diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-14 10:53:59 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-14 10:53:59 -0300 |
commit | 1fafdadaae260eaef7194102b5eb842466e63dd1 (patch) | |
tree | 734ab5c097f5a2ed36c2a7049d44f9c2bb46dede /community/duff/PKGBUILD | |
parent | 1f52af629b1911ab027ef9c5d4d5903b48792050 (diff) | |
parent | 6dab5c46b00f624c7900ff6d11b75bcafbe251d0 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/unpaper/PKGBUILD
community/virtualbox/PKGBUILD
core/crda/PKGBUILD
core/eventlog/PKGBUILD
extra/v86d/PKGBUILD
extra/vlc/PKGBUILD
testing/mesa/PKGBUILD
Diffstat (limited to 'community/duff/PKGBUILD')
-rw-r--r-- | community/duff/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/community/duff/PKGBUILD b/community/duff/PKGBUILD index dc155bc63..304178bb1 100644 --- a/community/duff/PKGBUILD +++ b/community/duff/PKGBUILD @@ -1,21 +1,24 @@ -# $Id: PKGBUILD 11210 2010-02-07 18:33:36Z dgriffiths $ +# $Id: PKGBUILD 44930 2011-04-13 03:50:28Z shusmann $ # Contributor: Aaron Schaefer <aaron@elasticdog.com> pkgname=duff -pkgver=0.4 -pkgrel=3 +pkgver=0.5 +pkgrel=1 pkgdesc="A command-line utility for quickly finding duplicates in a given set of files" arch=('i686' 'x86_64' 'mips64el') url="http://duff.sourceforge.net/" -license=('ZLIB') -depends=('glibc') +license=('custom') +depends=('glibc' 'sh') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('ca5043ceb1e16dac1aca5da1ed844149') +md5sums=('e42bedb278ab41081df3ebb9ce1cbe1d') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --mandir=/usr/share/man - make || return 1 + make +} +package() { + cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING } |