wok view backup-manager/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 11b5e93cb5f2
children fe437a17626b
line source
1 # SliTaz package receipt.
3 PACKAGE="backup-manager"
4 VERSION=0.7.13
5 CATEGORY="network"
6 SHORT_DESC="A really simple to use backup tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/sukria/Backup-Manager"
11 WGET_URL="$WEB_SITE/archive/$GITHASH.tar.gz"
12 CONFIG_FILES="/etc/backup-manager.conf"
13 TAGS="backup"
15 DEPENDS="bash perl"
16 BUILD_DEPENDS="wget gettext coreutils-operations"
17 SUGGESTED="ssh rsync mysql postgresql"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 make PREFIX=/usr DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir $fs/etc
29 cp -a $install/* $fs/
30 cp $fs/usr/share/backup-manager/backup-manager.conf.tpl $fs/etc/backup-manager.conf
31 rm -r $fs/usr/share/man
32 }