# HG changeset patch # User Eric Joseph-Alexandre # Date 1263158736 -3600 # Node ID 6b0135109ab2cd1c783018755477f68ec05cd9cc # Parent 95b431e1d1f8cc8ac8699754da0ac708c0dbe157 Add: libunique, libunique-dev, libunqiue-doc diff -r 95b431e1d1f8 -r 6b0135109ab2 libunique-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunique-dev/receipt Sun Jan 10 22:25:36 2010 +0100 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libunique-dev" +VERSION="1.0.8" +CATEGORY="development" +SHORT_DESC="Development files for Libunique." +MAINTAINER="erjo@slitaz.org" +DEPENDS="libunqiue" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://live.gnome.org/LibUnique" +WANTED="libunique" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} diff -r 95b431e1d1f8 -r 6b0135109ab2 libunique-doc/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunique-doc/receipt Sun Jan 10 22:25:36 2010 +0100 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="libunique-doc" +VERSION="1.0.8" +CATEGORY="development" +SHORT_DESC="Libunqiue documentation.." +MAINTAINER="erjo@slitaz.org" +DEPENDS="libunqiue" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://live.gnome.org/LibUnique" +WANTED="libunique" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/ + cp -a $_pkg/usr/share $fs/usr +} + diff -r 95b431e1d1f8 -r 6b0135109ab2 libunique/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunique/receipt Sun Jan 10 22:25:36 2010 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libunique" +VERSION="1.0.8" +CATEGORY="development" +SHORT_DESC="Library for writing single instance application." +MAINTAINER="erjo@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://live.gnome.org/LibUnique" +WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/libunique/${VERSION%.*}/$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 +} +