Add new package ddupes

This commit is contained in:
Florian Bruhin 2013-08-14 16:21:05 +02:00
commit ef1fec7bb7
2 changed files with 32 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = ddupes
pkgdesc = Extends fdupes action to directories. Includes ffdupes (fast fdupes).
pkgver = 2.3
pkgrel = 2
url = http://www.pietrobattiston.it/ddupes
arch = any
license = GPL3
depends = python2
source = ddupes-2.3.tar.gz::http://www.pietrobattiston.it/_media/ddupes:ddupes-2.3.tar.gz
sha1sums = 2e5667da75a12e27634a6d4ca6133775bf1d7c0d
pkgname = ddupes

19
PKGBUILD Normal file
View file

@ -0,0 +1,19 @@
# Maintainer: Florian Bruhin (The Compiler) <archlinux.org@the-compiler.org>
pkgname=ddupes
pkgver=2.3
pkgrel=2
pkgdesc="Extends fdupes action to directories. Includes ffdupes (fast fdupes)."
arch=(any)
url="http://www.pietrobattiston.it/ddupes"
license=('GPL3')
depends=('python2')
source=("${pkgname}-${pkgver}.tar.gz::http://www.pietrobattiston.it/_media/${pkgname}:${pkgname}-${pkgver}.tar.gz")
sha1sums=('2e5667da75a12e27634a6d4ca6133775bf1d7c0d')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python2 setup.py install --root="${pkgdir}" --optimize=1
}
# vim:set ts=2 sw=2 et: