updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / sprop-hg / PKGBUILD
blobb8cea29e0cf59e62342147cb4f77d6e46ea46279
1 # Maintainer: Tom Vincent <http://www.tlvince.com/contact/>
2 pkgname=sprop-hg
3 pkgver=3
4 pkgrel=1
5 pkgdesc="sprop is a simple X property utility"
6 arch=('any')
7 url="http://tools.suckless.org/sprop"
8 license=('MIT')
9 makedepends=('mercurial')
11 _hgroot="http://hg.suckless.org/"
12 _hgrepo="sprop"
14 build() {
15   cd "$srcdir"
16   msg "Connecting to Mercurial server...."
18   if [ -d $_hgrepo ] ; then
19     cd $_hgrepo
20     hg pull -u
21     msg "The local files are updated."
22   else
23     hg clone $_hgroot $_hgrepo
24   fi
26   msg "Mercurial checkout done or server timeout"
27   msg "Starting make..."
29   rm -rf "$srcdir/$_hgrepo-build"
30   cp -r "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build"
31   cd "$srcdir/$_hgrepo-build"
33   make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
36 package() {
37   cd "$srcdir/$_hgrepo-build"
38   make PREFIX="/usr" DESTDIR="$pkgdir/" install
39