wok annotate fuseiso/receipt @ rev 10638
linux-libre: Fixed to only use tazwok if cook doesn't exist. Fixed also some typos.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu May 26 18:26:21 2011 +0000 (2011-05-26) |
parents | 3eacc9c96968 |
children | 380ffe05937a |
rev | line source |
---|---|
erjo@460 | 1 # SliTaz package receipt. |
erjo@460 | 2 |
erjo@460 | 3 PACKAGE="fuseiso" |
erjo@460 | 4 VERSION="20070708" |
erjo@460 | 5 CATEGORY="system-tools" |
erjo@460 | 6 SHORT_DESC="Using FUSE to mount ISO filesystem" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2486 | 8 DEPENDS="fuse glib zlib" |
pascal@1514 | 9 BUILD_DEPENDS="fuse fuse-dev glib-dev" |
erjo@460 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@460 | 11 WEB_SITE="http://fuse.sourceforge.net/wiki/index.php/FuseIso" |
erjo@460 | 12 WGET_URL="http://ubiz.ru/dm/$TARBALL" |
erjo@460 | 13 |
erjo@460 | 14 # Rules to configure and make the package. |
erjo@460 | 15 compile_rules() |
erjo@460 | 16 { |
erjo@460 | 17 cd $src |
pascal@1514 | 18 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@1514 | 19 make && |
erjo@460 | 20 make DESTDIR=$PWD/_pkg install |
erjo@460 | 21 } |
erjo@460 | 22 |
erjo@460 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@460 | 24 genpkg_rules() |
erjo@460 | 25 { |
erjo@460 | 26 mkdir -p $fs/usr |
erjo@460 | 27 cp -a $_pkg/usr/bin $fs/usr |
erjo@460 | 28 } |
erjo@460 | 29 |