wok annotate libisofs/receipt @ rev 6891
Fixed cups. Needed to add --enable-dbus and --with-dbusdir=/etc/dbus-1 for there to be a /etc/dbus-1 folder to copy to package.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Oct 21 02:47:40 2010 +0000 (2010-10-21) |
parents | 7047c28f30b8 |
children | cf6909906a99 |
rev | line source |
---|---|
devl547@5625 | 1 # SliTaz package receipt. |
devl547@5625 | 2 |
devl547@5625 | 3 PACKAGE="libisofs" |
slaxemulator@6287 | 4 VERSION="0.6.36" |
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 |
devl547@5625 | 16 ./configure --prefix=/usr --infodir=/usr/share/info \ |
devl547@5625 | 17 --mandir=/usr/share/man $CONFIGURE_ARGS && |
devl547@5625 | 18 make && |
devl547@5625 | 19 make DESTDIR=$PWD/_pkg install |
devl547@5625 | 20 } |
devl547@5625 | 21 |
devl547@5625 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5625 | 23 genpkg_rules() |
devl547@5625 | 24 { |
devl547@5625 | 25 mkdir -p $fs/usr/lib |
devl547@5625 | 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
devl547@5625 | 27 } |