wok diff bleachbit/receipt @ rev 22581
bzlib, libbfd: fix version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 07 13:24:42 2020 +0100 (2020-01-07) |
parents | ed2d66b3c838 |
children | 9af0e03b8ad0 |
line diff
1.1 --- a/bleachbit/receipt Sun Feb 10 10:49:22 2019 +0100 1.2 +++ b/bleachbit/receipt Tue Jan 07 13:24:42 2020 +0100 1.3 @@ -1,30 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="bleachbit" 1.7 -VERSION="2.0" 1.8 +VERSION="3.0" 1.9 CATEGORY="system-tools" 1.10 -SHORT_DESC="Deletes unneeded files to free disk space and maintain privacy" 1.11 +SHORT_DESC="Deletes unneeded files to free disk space and maintain privacy." 1.12 MAINTAINER="devl547@gmail.com" 1.13 LICENSE="GPL3" 1.14 -WEB_SITE="http://bleachbit.sourceforge.net/" 1.15 +WEB_SITE="https://www.bleachbit.org/" 1.16 1.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.19 +WGET_URL="https://download.bleachbit.org/$TARBALL" 1.20 1.21 +DEPENDS="pygtk python" 1.22 BUILD_DEPENDS="python" 1.23 -DEPENDS="pygtk python" 1.24 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 make -C po local && 1.29 - make prefix=/usr DESTDIR=$DESTDIR install 1.30 + make install \ 1.31 + prefix=/usr \ 1.32 + DESTDIR=$DESTDIR 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 mkdir -p $fs/usr/ 1.39 - cp -a $install/usr/bin $fs/usr 1.40 - cp -a $install/usr/share $fs/usr 1.41 + 1.42 + cp -a $install/usr/bin $fs/usr 1.43 + cp -a $install/usr/share $fs/usr 1.44 }