bleahbit: use gnu-makefile build method, use pycompile trigger, remove redundant python dep.

This commit is contained in:
Juan RP 2013-06-14 18:17:32 +02:00
parent 0e2a3aac12
commit e6ccfea0f4

View file

@ -1,8 +1,10 @@
# Template file for 'bleachbit' # Template file for 'bleachbit'
pkgname=bleachbit pkgname=bleachbit
version=0.9.5 version=0.9.5
revision=1 revision=2
hostmakedepends="pygtk>=2 python>=2.6 desktop-file-utils gtk-update-icon-cache hicolor-icon-theme" build_style=gnu-makefile
make_install_args="prefix=/usr"
hostmakedepends="pygtk>=2 desktop-file-utils gtk-update-icon-cache hicolor-icon-theme"
short_desc="Deletes unneeded files to free disk space and maintain privacy" short_desc="Deletes unneeded files to free disk space and maintain privacy"
maintainer="graysky <graysky AT archlinux DOT us>" maintainer="graysky <graysky AT archlinux DOT us>"
license="GPL3" license="GPL3"
@ -10,18 +12,11 @@ homepage="http://bleachbit.sourceforge.net"
distfiles="http://downloads.sourceforge.net/$pkgname/$pkgname-$version.tar.bz2" distfiles="http://downloads.sourceforge.net/$pkgname/$pkgname-$version.tar.bz2"
checksum=dd8ecded6f078efb0e421c4d43a0481411e28ef6dac6d25653cd8e3cddf196f7 checksum=dd8ecded6f078efb0e421c4d43a0481411e28ef6dac6d25653cd8e3cddf196f7
do_build() {
make
}
do_install() {
make prefix=/usr DESTDIR="$DESTDIR" install
}
bleachbit_package() { bleachbit_package() {
noarch="yes" noarch="yes"
depends="pygtk>=2 python>=2.6 desktop-file-utils gtk-update-icon-cache hicolor-icon-theme" depends="pygtk>=2 desktop-file-utils gtk-update-icon-cache hicolor-icon-theme"
pkg_install() { pycompile_dirs="/usr/share/bleachbit"
vmove all pkg_install() {
} vmove all
}
} }