# HG changeset patch # User Paul Issott # Date 1249673126 0 # Node ID fe884d8ff2643225294ce28a0e63634710bb3643 # Parent 5cbc6e9ad233c480e733777f03deb75220165e5b Add djmount, faad2, libmms (Thanks Kacper) diff -r 5cbc6e9ad233 -r fe884d8ff264 djmount/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/djmount/receipt Fri Aug 07 19:25:26 2009 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="djmount" +VERSION="0.71" +CATEGORY="multimedia" +SHORT_DESC="Mount uPnP mediaservers content as a Linux filesystem." +MAINTAINER="slitaz@kacper.se" +DEPENDS="fuse readline" +BUILD_DEPENDS="fuse-dev readline-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://djmount.sourceforge.net" +WGET_URL="$SF_MIRROR/$PACKAGE/$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 + cp -a $_pkg/usr/bin $fs/usr +} + diff -r 5cbc6e9ad233 -r fe884d8ff264 faad2-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/faad2-dev/receipt Fri Aug 07 19:25:26 2009 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="faad2-dev" +VERSION="2.7" +CATEGORY="development" +SHORT_DESC="FAAD2 is an open source MPEG-4 and MPEG-2 AAC decoder devel files." +MAINTAINER="slitaz@kacper.se" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.audiocoding.com" +WANTED="faad2" + +# 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 +} + diff -r 5cbc6e9ad233 -r fe884d8ff264 faad2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/faad2/receipt Fri Aug 07 19:25:26 2009 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="faad2" +VERSION="2.7" +CATEGORY="multimedia" +SHORT_DESC="FAAD2 is an open source MPEG-4 and MPEG-2 AAC decoder." +MAINTAINER="slitaz@kacper.se" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.audiocoding.com" +WGET_URL="$SF_MIRROR/faac/$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 $fs/usr/bin + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + strip --strip-unneeded $fs/usr/lib/* +} + diff -r 5cbc6e9ad233 -r fe884d8ff264 libmms-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmms-dev/receipt Fri Aug 07 19:25:26 2009 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libmms-dev" +VERSION="0.4" +CATEGORY="development" +SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams devel files." +MAINTAINER="slitaz@kacper.se" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://launchpad.net/libmms" +WANTED="libmms" + +# 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 5cbc6e9ad233 -r fe884d8ff264 libmms/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmms/receipt Fri Aug 07 19:25:26 2009 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="libmms" +VERSION="0.4" +CATEGORY="development" +SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams." +MAINTAINER="slitaz@kacper.se" +DEPENDS="" +BUILD_DEPENDS="pkg-config glib-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://launchpad.net/libmms" +WGET_URL="$SF_MIRROR/$PACKAGE/$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 + strip --strip-unneeded $fs/usr/lib/* +} +