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