wok view jfsutils/receipt @ rev 4804

Fix: fix CATEGORY networking --> network
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 17 22:17:58 2010 +0100 (2010-01-17)
parents 0588160a6878
children 4466fa74bc06
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-ng-uuid"
12 BUILD_DEPENDS="e2fsprogs-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/sbin $fs/usr
29 }