summaryrefslogtreecommitdiff
path: root/community/fdupes
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-11 01:48:19 -0700
committerroot <root@rshg054.dnsready.net>2013-05-11 01:48:19 -0700
commit207b7c7b0d7bc0db898a2386a665bdb20495fb19 (patch)
tree972e21e2c70df56034182bfc0bf6ccbebab104b7 /community/fdupes
parentfc7ee6f5a358c428577ae4e6217ff594a3e45ad3 (diff)
Sat May 11 01:48:09 PDT 2013
Diffstat (limited to 'community/fdupes')
-rw-r--r--community/fdupes/PKGBUILD15
1 files changed, 8 insertions, 7 deletions
diff --git a/community/fdupes/PKGBUILD b/community/fdupes/PKGBUILD
index 3ad9caa47..9dfae23a5 100644
--- a/community/fdupes/PKGBUILD
+++ b/community/fdupes/PKGBUILD
@@ -1,28 +1,29 @@
-# $Id: PKGBUILD 67613 2012-03-13 14:16:46Z lcarlier $
+# $Id: PKGBUILD 90262 2013-05-10 16:06:17Z jelle $
# Maintainer: Daenyth <Daenyth+Arch at gmail dot com>
# Contributor: Chris Winter <twidds at gmail dot com>
pkgname=fdupes
-pkgver=1.40
-pkgrel=6
+pkgver=1.51
+pkgrel=1
pkgdesc="a program for identifying or deleting duplicate files residing within specified directories"
arch=('i686' 'x86_64')
url="http://code.google.com/p/fdupes/"
license=('MIT')
depends=(glibc)
source=(http://fdupes.googlecode.com/files/$pkgname-$pkgver.tar.gz LICENSE)
-md5sums=('11de9ab4466089b6acbb62816b30b189' '47f17890218f832f870bf7a02eaeb017')
+md5sums=('47d0410c90c9e51e450933ba35a32b62'
+ '47f17890218f832f870bf7a02eaeb017')
build() {
cd $srcdir/$pkgname-$pkgver
- make
+ make PREFIX=/usr
}
package(){
cd $srcdir/$pkgname-$pkgver
install -d ${pkgdir}/usr/{share/man/man1,bin}
- make INSTALLDIR=${pkgdir}/usr/bin MANPAGEDIR=${pkgdir}/usr/share/man install
- install -D -m644 ../LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+ make PREFIX=$pkgdir/usr DESTDIR=${pkgdir}/usr/bin INSTALLDIR=${pkgdir}/usr/bin MAN_DIR=${pkgdir}/usr/share/man/man1 install
+ install -D -m644 $srcdir/LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
}