wok-6.x annotate jfsutils/receipt @ rev 2107
Add: libpurple-dev
author | Mallory MOLLO <mallory@skyrock.com> |
---|---|
date | Thu Jan 29 19:03:51 2009 +0100 (2009-01-29) |
parents | |
children | 84e6c4023ab1 |
rev | line source |
---|---|
pascal@1690 | 1 # SliTaz package receipt. |
pascal@1690 | 2 |
pascal@1690 | 3 PACKAGE="jfsutils" |
pascal@1690 | 4 VERSION="1.1.13" |
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" |
pascal@1690 | 11 BUILD_DEPENDS="e2fsprogs-dev" |
pascal@1690 | 12 |
pascal@1690 | 13 # Rules to configure and make the package. |
pascal@1690 | 14 compile_rules() |
pascal@1690 | 15 { |
pascal@1690 | 16 cd $src |
pascal@1690 | 17 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1690 | 18 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1690 | 19 make && |
pascal@1690 | 20 make DESTDIR=$PWD/_pkg install |
pascal@1690 | 21 } |
pascal@1690 | 22 |
pascal@1690 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1690 | 24 genpkg_rules() |
pascal@1690 | 25 { |
pascal@1690 | 26 mkdir -p $fs/usr |
pascal@1690 | 27 cp -a $_pkg/usr/sbin $fs/usr |
pascal@1690 | 28 } |
pascal@1690 | 29 |