diff options
author | root <root@rshg047.dnsready.net> | 2011-04-08 04:18:44 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-04-08 04:18:44 +0000 |
commit | 59075f0265483f32e9ac4c67ba9e69cb019ba044 (patch) | |
tree | d0384b724b17b888dcd1cf06dce9bc25655d1ba1 /community/expac/PKGBUILD | |
parent | 3b216f42d91b33161572550f4556a9ba93d1cecb (diff) |
Fri Apr 8 04:18:44 UTC 2011
Diffstat (limited to 'community/expac/PKGBUILD')
-rw-r--r-- | community/expac/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/expac/PKGBUILD b/community/expac/PKGBUILD new file mode 100644 index 000000000..64d84c755 --- /dev/null +++ b/community/expac/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 44424 2011-04-07 13:07:03Z dreisner $ +# Maintainer: Dave Reisner <d@falconindy.com> + +pkgname=expac +pkgver=0.04 +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=('a5a766f27d8147bf53cbc6cfd7d9e5c9') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr DESTDIR="$pkgdir" install +} + +# vim: ft=sh syn=sh |