wok view libiec61883/receipt @ rev 20638

updated libcurl (7.60.0 -> 7.61.1)
author Hans-G?nter Theisgen
date Thu Jan 10 14:28:38 2019 +0100 (2019-01-10)
parents f66beb36a331
children 8685ee90f6aa
line source
1 # SliTaz package receipt.
3 PACKAGE="libiec61883"
4 VERSION="1.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="libiec61883 is a standard defining a high speed serial bus."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 #TARBALL="$PACKAGE-$VERSION.tar.gz"
10 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz"
11 WEB_SITE="http://www.linux1394.org/"
12 #WGET_URL="http://www.linux1394.org/dl/$TARBALL"
13 WGET_URL="http://ftp.debian.org/pool/main/libi/$PACKAGE/$TARBALL"
15 DEPENDS="libraw1394"
16 BUILD_DEPENDS="libraw1394 libraw1394-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/dev
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }