wok view jfsutils/receipt @ rev 2243

perl-*: fix WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 15 18:22:29 2009 +0000 (2009-02-15)
parents
children 84e6c4023ab1
line source
1 # SliTaz package receipt.
3 PACKAGE="jfsutils"
4 VERSION="1.1.13"
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 BUILD_DEPENDS="e2fsprogs-dev"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/sbin $fs/usr
28 }