wok view partclone/receipt @ rev 18772

syslinux/iso2exe: update /init (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 31 15:53:34 2015 +0100 (2015-12-31)
parents 3eb8a14a68f7
children c4a0f0708ad5
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 $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 }