diff options
author | root <root@rshg054.dnsready.net> | 2011-10-14 23:14:43 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-14 23:14:43 +0000 |
commit | 4232b74445f80f4175c1485a53a02c79b37a63f1 (patch) | |
tree | ff7a0dde570bf886cc5006918a9ee339efecde1c /community-testing | |
parent | e426a2696568231fa5a863cb80f4db9088193732 (diff) |
Fri Oct 14 23:14:43 UTC 2011
Diffstat (limited to 'community-testing')
-rw-r--r-- | community-testing/expac/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community-testing/expac/PKGBUILD b/community-testing/expac/PKGBUILD new file mode 100644 index 000000000..ff83247d7 --- /dev/null +++ b/community-testing/expac/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 56821 2011-10-13 19:47:47Z dreisner $ +# Maintainer: Dave Reisner <d@falconindy.com> + +pkgname=expac +pkgver=0.07 +pkgrel=1 +pkgdesc="pacman database extraction utility" +arch=('i686' 'x86_64') +url="http://github.com/falconindy/expac" +license=('GPL') +depends=('pacman') +makedepends=('perl') +source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('1bc637b733051827982db12db84643f2') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr DESTDIR="$pkgdir" install +} + +# vim: ft=sh syn=sh |