wok-next annotate libnjb/receipt @ rev 10252
Add safecopy.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat May 21 03:53:34 2011 +0000 (2011-05-21) |
parents | 72137cdb4884 |
children | 62cfbad52d51 |
rev | line source |
---|---|
keupont@2882 | 1 # SliTaz package receipt. |
keupont@2882 | 2 |
keupont@2882 | 3 PACKAGE="libnjb" |
keupont@2882 | 4 VERSION="2.2.6" |
keupont@2882 | 5 CATEGORY="system-tools" |
keupont@2882 | 6 SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ" |
keupont@2882 | 7 MAINTAINER="keupont@no-log.org" |
gokhlayeh@8871 | 8 DEPENDS="libusb-compat" |
keupont@2882 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
keupont@2882 | 10 WEB_SITE="http://libnjb.sourceforge.net/" |
keupont@2882 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
keupont@2882 | 12 |
keupont@2882 | 13 # Rules to configure and make the package. |
keupont@2882 | 14 compile_rules() |
keupont@2882 | 15 { |
keupont@2882 | 16 cd $src |
gokhlayeh@8871 | 17 ./configure && make && make install |
keupont@2882 | 18 } |
keupont@2882 | 19 |
keupont@2882 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
keupont@2882 | 21 genpkg_rules() |
keupont@2882 | 22 { |
keupont@2882 | 23 mkdir -p $fs/usr/lib |
keupont@2882 | 24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
keupont@2882 | 25 } |
keupont@2882 | 26 |