# HG changeset patch # User Theophile Rascagneres # Date 1241456993 0 # Node ID 72137cdb48845714ce7482d6519d05d417c0aea2 # Parent ebb2ca1fcaba653cb2063a9cb2857449eefb1238 Add libnjb, libnjb-dev diff -r ebb2ca1fcaba -r 72137cdb4884 libnjb-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libnjb-dev/receipt Mon May 04 17:09:53 2009 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libnjb-dev" +VERSION="2.2.6" +CATEGORY="development" +SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ devel files" +MAINTAINER="keupont@no-log.org" +WANTED="libnjb" +WEB_SITE="http://libnjb.sourceforge.net/" + +# 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 + cp -a $_pkg/usr/bin $fs/usr +} + diff -r ebb2ca1fcaba -r 72137cdb4884 libnjb/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libnjb/receipt Mon May 04 17:09:53 2009 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="libnjb" +VERSION="2.2.6" +CATEGORY="system-tools" +SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ" +MAINTAINER="keupont@no-log.org" +DEPENDS="libusb" +BUILD_DEPENDS="libusb-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://libnjb.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --enable-hotplugging \ + --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 +} +