# HG changeset patch
# User Alexander Medvedev <devl547@gmail.com>
# Date 1274985983 0
# Node ID 7047c28f30b8e7ac9c8a6636d86a19f54c0b8c09
# Parent  9fa709cfee757a17d9b1f32c085cf21c554d476a
Add: libisofs

diff -r 9fa709cfee75 -r 7047c28f30b8 libisofs-dev/receipt
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libisofs-dev/receipt	Thu May 27 18:46:23 2010 +0000
@@ -0,0 +1,19 @@
+# SliTaz package receipt.
+
+PACKAGE="libisofs-dev"
+VERSION="0.6.32"
+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="libisofs"
+
+# 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/lib/pkgconfig $fs/usr/lib
+}
+
diff -r 9fa709cfee75 -r 7047c28f30b8 libisofs/receipt
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libisofs/receipt	Thu May 27 18:46:23 2010 +0000
@@ -0,0 +1,27 @@
+# SliTaz package receipt.
+
+PACKAGE="libisofs"
+VERSION="0.6.32"
+CATEGORY="utilities"
+SHORT_DESC="libburnia is a project for reading, mastering  and writing optical discs."
+MAINTAINER="devl547@gmail.com"
+TARBALL="$PACKAGE-$VERSION.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
+}