mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
29 lines
840 B
Bash
29 lines
840 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Guillermo A. Amaral <me@guillermoamaral.com>
|
|
|
|
pkgname=kleansweep
|
|
pkgver=0.2.9
|
|
pkgrel=2
|
|
pkgdesc="Allows you to reclaim disk space by finding unneeded files"
|
|
license=("GPL")
|
|
url="http://linux.bydg.org/~yogin/"
|
|
arch=(i686 x86_64)
|
|
depends=('kdelibs3' 'python')
|
|
makedepends=('scons')
|
|
options=('libtool')
|
|
source=(http://linux.bydg.org/~yogin/$pkgname-$pkgver.tar.bz2
|
|
kubuntu_03_fix_scons_chmod_error.patch)
|
|
md5sums=('eb4530dc77fbe35ede8267e89275e5e9'
|
|
'bebb833313fc184848b5fef77a7cb310')
|
|
|
|
build()
|
|
{
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
[ $NOEXTRACT -eq 1 ] || patch -p1 <$srcdir/kubuntu_03_fix_scons_chmod_error.patch
|
|
|
|
[ $NOEXTRACT -eq 1 ] || ./configure
|
|
scons || return 1
|
|
scons install DESTDIR=$startdir/pkg
|
|
}
|