wok view jfsutils/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 4466fa74bc06
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="jfsutils"
4 VERSION="1.1.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for manipulating jfs file-system."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://jfs.sourceforge.net/"
10 WGET_URL="${WEB_SITE}project/pub/$TARBALL"
11 DEPENDS="util-linux-uuid"
12 BUILD_DEPENDS="e2fsprogs-dev"
13 TAGS="filesystem"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/sbin $fs/usr
30 }