wok annotate libiec61883/receipt @ rev 23258
updated ode and ode-dev (0.16 -> 0.16.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 26 06:55:46 2020 +0100 (2020-03-26) |
parents | 8f447cf2eee5 |
children | 34e801e0eb52 |
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" |
pascal@20794 | 11 WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" |
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 |