wok view partclone/receipt @ rev 20097

Up tazpanel (616)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 07 13:20:59 2017 +0200 (2017-10-07)
parents 4ea96657834e
children 6dd10646ce67
line source
1 # SliTaz package receipt.
3 PACKAGE="partclone"
4 VERSION="0.2.49"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities to smartly backup partitions."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://partclone.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="backup"
14 DEPENDS="ncursesw ntfs-3g e2fsprogs"
15 BUILD_DEPENDS="util-linux-uuid-dev libxslt e2fsprogs-dev \
16 ncursesw-dev ntfsprogs-dev ntfs-3g-dev docbook-xsl"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure LDFLAGS="$LDFLAGS -lcom_err" $CONFIGURE_ARGS \
22 --enable-extfs \
23 --enable-fat \
24 --enable-exfat \
25 --enable-ntfs \
26 --enable-btrfs \
27 --enable-hfsp \
28 --enable-ncursesw &&
29 make && make install 2>&1 | sed "s/8': No such/8': no such/"
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share/local
36 cp -a $install/usr/sbin* $fs/usr
37 }