wok view partclone/receipt @ rev 16284

ARM: make nfs-utils cross compile
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 20:48:48 2014 +0200 (2014-04-06)
parents 20649b8c7dbe
children 4ea96657834e
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"
13 DEPENDS="ncursesw ntfs-3g e2fsprogs"
14 BUILD_DEPENDS="util-linux-uuid-dev libxslt e2fsprogs-dev \
15 ncursesw-dev ntfsprogs-dev ntfs-3g-dev docbook-xsl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS \
21 --enable-extfs \
22 --enable-fat \
23 --enable-exfat \
24 --enable-ntfs \
25 --enable-btrfs \
26 --enable-hfsp \
27 --enable-ncursesw &&
28 make && make install 2>&1 | sed "s/8': No such/8': no such/"
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/local
35 cp -a $install/usr/sbin* $fs/usr
36 }