diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/fdupes/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/fdupes/PKGBUILD')
-rw-r--r-- | community/fdupes/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/fdupes/PKGBUILD b/community/fdupes/PKGBUILD new file mode 100644 index 000000000..220f932ac --- /dev/null +++ b/community/fdupes/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 17235 2010-05-22 14:11:06Z daenyth $ +# Maintainer: Daenyth <Daenyth+Arch at gmail dot com> +# Contributor: Chris Winter <twidds at gmail dot com> + +pkgname=fdupes +pkgver=1.40 +pkgrel=5 +pkgdesc="a program for identifying or deleting duplicate files residing within specified directories" +arch=('i686' 'x86_64') +url="http://premium.caribe.net/~adrian2/fdupes.html" +license=('MIT') +source=(http://premium.caribe.net/~adrian2/programs/$pkgname-$pkgver.tar.gz LICENSE) +md5sums=('11de9ab4466089b6acbb62816b30b189' '47f17890218f832f870bf7a02eaeb017') + +build() { + cd $srcdir/$pkgname-$pkgver + install -d $pkgdir/usr/{share/man/man1,bin} + + make || return 1 + make INSTALLDIR=$pkgdir/usr/bin MANPAGEDIR=$pkgdir/usr/share/man install + install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} + +# vim:set ts=2 sw=2 et: |