summaryrefslogtreecommitdiff
path: root/community-testing/expac
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/expac')
-rw-r--r--community-testing/expac/PKGBUILD26
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