summaryrefslogtreecommitdiff
path: root/community/pkgfile
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-22 00:04:51 +0000
committerroot <root@rshg054.dnsready.net>2012-07-22 00:04:51 +0000
commite4d2743138eaca146b1a01a7815facdb3d271d88 (patch)
treeadfc39f3d6e7081629f4fb9ed391f3155617b021 /community/pkgfile
parent5d90c7e7b2760bbf7b048dca31384e9f53a97c61 (diff)
Sun Jul 22 00:04:51 UTC 2012
Diffstat (limited to 'community/pkgfile')
-rw-r--r--community/pkgfile/PKGBUILD16
1 files changed, 9 insertions, 7 deletions
diff --git a/community/pkgfile/PKGBUILD b/community/pkgfile/PKGBUILD
index 7b79de3c0..294a6143a 100644
--- a/community/pkgfile/PKGBUILD
+++ b/community/pkgfile/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 73970 2012-07-17 20:42:54Z dreisner $
+# $Id: PKGBUILD 74102 2012-07-20 22:53:30Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
pkgname=pkgfile
-pkgver=1
-pkgrel=2
+pkgver=2
+pkgrel=1
pkgdesc="a pacman .files metadata explorer"
arch=('i686' 'x86_64')
url="http://github.com/falconindy/pkgfile"
@@ -11,16 +11,18 @@ license=('MIT')
depends=('libarchive' 'curl' 'pcre' 'pacman')
conflicts=('pkgtools<24-2')
makedepends=('perl')
-source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz")
+source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.xz")
install=pkgfile.install
-md5sums=('14e4e666fd6bfeae6fcb9313737c780d')
+md5sums=('815ee5ad6ca3c1f6262389f423319fa9')
build() {
- make -C "$pkgname-$pkgver"
+ cd "$pkgname-$pkgver"
+ ./configure
+ make
}
package() {
- make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}
# vim: ft=sh syn=sh