wok annotate libisofs/receipt @ rev 11257

iron-linux: Cookutils uses wget -O $SRC/$TARBALL so we can change TARBALL to save source as TARBALL. This needs to be done for iron-linux cause other wise it will just find iron-linux.tar.gz and use the old version.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 07 11:21:08 2011 +0000 (2011-11-07)
parents f800b0655e56
children 8f447cf2eee5
rev   line source
devl547@5625 1 # SliTaz package receipt.
devl547@5625 2
devl547@5625 3 PACKAGE="libisofs"
slaxemulator@10129 4 VERSION="1.0.8"
devl547@5625 5 CATEGORY="utilities"
devl547@5625 6 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs."
devl547@5625 7 MAINTAINER="devl547@gmail.com"
devl547@5625 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5625 9 WEB_SITE="http://libburnia-project.org/"
devl547@5625 10 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
devl547@5625 11
devl547@5625 12 # Rules to configure and make the package.
devl547@5625 13 compile_rules()
devl547@5625 14 {
devl547@5625 15 cd $src
slaxemulator@10129 16 ./configure $CONFIGURE_ARGS &&
slaxemulator@10129 17 make -j1 && make -j1 install
devl547@5625 18 }
devl547@5625 19
devl547@5625 20 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5625 21 genpkg_rules()
devl547@5625 22 {
devl547@5625 23 mkdir -p $fs/usr/lib
devl547@5625 24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
devl547@5625 25 }