updates per xtraeme's suggestions

This commit is contained in:
graysky 2013-06-14 11:57:42 -04:00
parent 027873ecfa
commit da2f57462e
2 changed files with 8 additions and 2 deletions

View file

@ -10,8 +10,11 @@ homepage="http://bleachbit.sourceforge.net"
distfiles="http://downloads.sourceforge.net/$pkgname/$pkgname-$version.tar.bz2"
checksum=dd8ecded6f078efb0e421c4d43a0481411e28ef6dac6d25653cd8e3cddf196f7
do_install() {
do_build() {
make
}
do_install() {
make prefix=/usr DESTDIR="$DESTDIR" install
}

View file

@ -10,8 +10,11 @@ homepage="https://github.com/graysky2/profile-cleaner"
distfiles="http://repo-ck.com/source/$pkgname/$pkgname-$version.tar.xz"
checksum=5802dbd1ef2aeddad1660452275e7c5663acd4acaa8289cf6ad8ea54098360d0
do_make() {
make
}
do_install() {
make
make DESTDIR="$DESTDIR" install
install -Dm644 LICENSE "$DESTDIR/usr/share/licenses/$pkgname/LICENSE"
}