# HG changeset patch # User Hans-G?nter Theisgen # Date 1578119218 -3600 # Node ID 859a7c0fa1763a11d98992d636ee3dbf5bd2551c # Parent 7f59b303f7334def11cc73f33dbdfd00502c4db8 updated bleachbit (2.0 -> 3.0) diff -r 7f59b303f733 -r 859a7c0fa176 bleachbit/receipt --- a/bleachbit/receipt Fri Jan 03 17:54:32 2020 +0100 +++ b/bleachbit/receipt Sat Jan 04 07:26:58 2020 +0100 @@ -1,30 +1,33 @@ # SliTaz package receipt. PACKAGE="bleachbit" -VERSION="2.0" +VERSION="3.0" CATEGORY="system-tools" -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="devl547@gmail.com" LICENSE="GPL3" -WEB_SITE="http://bleachbit.sourceforge.net/" +WEB_SITE="https://www.bleachbit.org/" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://download.bleachbit.org/$TARBALL" +DEPENDS="pygtk python" BUILD_DEPENDS="python" -DEPENDS="pygtk python" # Rules to configure and make the package. compile_rules() { make -C po local && - make prefix=/usr DESTDIR=$DESTDIR install + make install \ + prefix=/usr \ + DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/ - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share $fs/usr + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share $fs/usr }