diff options
Diffstat (limited to 'community/fdupes')
-rw-r--r-- | community/fdupes/ChangeLog | 11 | ||||
-rw-r--r-- | community/fdupes/LICENSE | 22 | ||||
-rw-r--r-- | community/fdupes/PKGBUILD | 24 |
3 files changed, 57 insertions, 0 deletions
diff --git a/community/fdupes/ChangeLog b/community/fdupes/ChangeLog new file mode 100644 index 000000000..2fbc6489c --- /dev/null +++ b/community/fdupes/ChangeLog @@ -0,0 +1,11 @@ +2008-10-05 Eric Belanger <eric@archlinux.org> + + * fdupes 1.40-4 + * Added x86_64 arch tag + * Fixed license + * FHS man pages + +2008-10-03 Douglas Soares de Andrade <douglas@archlinux.org> + + * Adding package to community: 1.40 + diff --git a/community/fdupes/LICENSE b/community/fdupes/LICENSE new file mode 100644 index 000000000..d353aab98 --- /dev/null +++ b/community/fdupes/LICENSE @@ -0,0 +1,22 @@ +Legal Information +-------------------------------------------------------------------- +FDUPES Copyright (c) 1999 Adrian Lopez + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation files +(the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 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: |