wok-next annotate libiec61883/receipt @ rev 18875
Add python-erppeek
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 04 17:02:49 2016 +0100 (2016-02-04) |
parents | f66beb36a331 |
children | fb478984fbc8 |
rev | line source |
---|---|
pankso@311 | 1 # SliTaz package receipt. |
pankso@311 | 2 |
pankso@311 | 3 PACKAGE="libiec61883" |
pascal@5789 | 4 VERSION="1.2.0" |
pankso@311 | 5 CATEGORY="system-tools" |
pankso@311 | 6 SHORT_DESC="libiec61883 is a standard defining a high speed serial bus." |
pankso@311 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15473 | 8 LICENSE="LGPL2.1" |
pascal@5789 | 9 #TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@5789 | 10 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" |
pankso@311 | 11 WEB_SITE="http://www.linux1394.org/" |
pascal@5789 | 12 #WGET_URL="http://www.linux1394.org/dl/$TARBALL" |
pascal@5789 | 13 WGET_URL="http://ftp.debian.org/pool/main/libi/$PACKAGE/$TARBALL" |
pankso@311 | 14 |
pascal@15473 | 15 DEPENDS="libraw1394" |
pascal@15473 | 16 BUILD_DEPENDS="libraw1394 libraw1394-dev" |
pascal@15473 | 17 |
pankso@311 | 18 # Rules to configure and make the package. |
pankso@311 | 19 compile_rules() |
pankso@311 | 20 { |
pankso@311 | 21 cd $src |
pankso@311 | 22 ./configure \ |
pankso@311 | 23 --prefix=/usr \ |
pankso@311 | 24 --mandir=/usr/share/man \ |
pascal@1465 | 25 $CONFIGURE_ARGS && |
pascal@1465 | 26 make && |
pascal@15473 | 27 make DESTDIR=$DESTDIR install |
pankso@311 | 28 } |
pankso@311 | 29 |
pankso@311 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@311 | 31 genpkg_rules() |
pankso@311 | 32 { |
pankso@311 | 33 mkdir -p $fs/usr/lib $fs/dev |
pascal@15473 | 34 cp -a $install/usr/bin $fs/usr |
pascal@15473 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@311 | 36 } |
pankso@311 | 37 |