wok annotate partclone/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents b08b0c9f0ff2
children 408c87fa22ca
rev   line source
erjo@13424 1 # SliTaz package receipt.
erjo@13424 2
erjo@13424 3 PACKAGE="partclone"
erjo@13424 4 VERSION="0.2.49"
erjo@13424 5 CATEGORY="system-tools"
erjo@13424 6 SHORT_DESC="Utilities to smartly backup partitions."
erjo@13424 7 MAINTAINER="erjo@slitaz.org"
pascal@13426 8 WEB_SITE="http://partclone.org/"
erjo@13424 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13426 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@13424 11
erjo@13424 12 DEPENDS="ncursesw ntfs-3g e2fsprogs"
pascal@13426 13 BUILD_DEPENDS="util-linux-uuid-dev libxslt e2fsprogs-dev \
pascal@13427 14 ncursesw-dev ntfsprogs-dev ntfs-3g-dev"
erjo@13424 15
erjo@13424 16 # Rules to configure and make the package.
erjo@13424 17 compile_rules()
erjo@13424 18 {
erjo@13424 19 ./configure $CONFIGURE_ARGS \
erjo@13424 20 --enable-extfs \
erjo@13424 21 --enable-fat \
erjo@13424 22 --enable-exfat \
erjo@13424 23 --enable-ntfs \
pascal@13429 24 --enable-btrfs \
pascal@13429 25 --enable-hfsp \
erjo@13424 26 --enable-ncursesw \
erjo@13424 27 && make && make install
erjo@13424 28 }
erjo@13424 29
erjo@13424 30 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@13424 31 genpkg_rules()
erjo@13424 32 {
erjo@13424 33 mkdir -p $fs/usr/share/local
erjo@13424 34 cp -a $install/usr/sbin* $fs/usr
erjo@13424 35 }