# HG changeset patch # User Alexander Medvedev # Date 1274985958 0 # Node ID 9fa709cfee757a17d9b1f32c085cf21c554d476a # Parent 05fbc7d7fe51bd4102d2ea0d2e7ad667e08634d3 Add: libburn diff -r 05fbc7d7fe51 -r 9fa709cfee75 libburn-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libburn-dev/receipt Thu May 27 18:45:58 2010 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libburn-dev" +VERSION="0.8.0" +CATEGORY="development" +SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs." +MAINTAINER="devl547@gmail.com" +WEB_SITE="http://libburnia-project.org/" +WANTED="libburn" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*a $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share $fs/usr + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} + diff -r 05fbc7d7fe51 -r 9fa709cfee75 libburn/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libburn/receipt Thu May 27 18:45:58 2010 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="libburn" +VERSION="0.8.0" +CATEGORY="utilities" +SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs." +MAINTAINER="devl547@gmail.com" +TARBALL="$PACKAGE-$VERSION.pl00.tar.gz" +WEB_SITE="http://libburnia-project.org/" +WGET_URL="http://files.libburnia-project.org/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}