# HG changeset patch # User Rohit Joshi # Date 1287536860 14400 # Node ID ac6fd5f970ad74ddec28bd7696ea1b6df4a29dad # Parent fc9449a2e57e4e94652a48a1290ddcc79bd73a5f Add liblo: mv from undigest diff -r fc9449a2e57e -r ac6fd5f970ad liblo-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblo-dev/receipt Tue Oct 19 21:07:40 2010 -0400 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="liblo-dev" +VERSION="0.26" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="liblo devel files" +WEB_SITE="http://librdf.org/raptor" +WANTED="liblo" + + +# 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/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r fc9449a2e57e -r ac6fd5f970ad liblo/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblo/receipt Tue Oct 19 21:07:40 2010 -0400 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="liblo" +VERSION="0.26" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems" +BUILD_DEPENDS="" +WEB_SITE="http://plugin.org.uk/liblo/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr && + 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/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + +}