wok view jfsutils/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
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 }