wok view bleachbit/receipt @ rev 23797

linld: fix argstr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 23 18:02:24 2020 +0000 (2020-05-23)
parents ed2d66b3c838
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="bleachbit"
4 VERSION="3.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Deletes unneeded files to free disk space and maintain privacy."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.bleachbit.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://download.bleachbit.org/$TARBALL"
14 DEPENDS="pygtk python"
15 BUILD_DEPENDS="python"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make -C po local &&
21 make install \
22 prefix=/usr \
23 DESTDIR=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share $fs/usr
33 }