Date: Tuesday, October 13, 2015 @ 17:59:46 Author: mtorromeo Revision: 143920
Moved rmlint from [unsupported] Added: rmlint/ rmlint/trunk/ rmlint/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: rmlint/trunk/PKGBUILD =================================================================== --- rmlint/trunk/PKGBUILD (rev 0) +++ rmlint/trunk/PKGBUILD 2015-10-13 15:59:46 UTC (rev 143920) @@ -0,0 +1,26 @@ +# Maintainer: Blisfull <[email protected]> +# Contributer: SahibBommelig <[email protected]> +# rmlint PKBUILD for ArchLinux + +pkgname=rmlint +pkgver=2.2.0 +pkgrel=1 +pkgdesc="Tool to remove duplicates and other lint, being much faster than fdupes" +arch=('i686' 'x86_64') +url="https://github.com/sahib/rmlint" +license=('GPL3') +depends=('sqlite' 'libutil-linux' 'binutils' 'json-glib' 'libelf') +makedepends=('scons' 'python-sphinx' 'gettext') +source=("https://github.com/sahib/rmlint/archive/v$pkgver/$pkgname-$pkgver.tar.gz") +sha256sums=('b684aa73ec80423e1cc5e9cee9ae466f0ed0c6a2e5a88482a07d3306465ee6f1') + +build() { + cd "$srcdir"/$pkgname-$pkgver + scons config + scons -j4 DEBUG=1 --prefix="$pkgdir"/usr --actual-prefix=/usr +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + scons DEBUG=1 --prefix="$pkgdir"/usr install --actual-prefix=/usr +}
