wok view libiec61883/receipt @ rev 10949

Up iron-linux (13.0.800.0) security fixes
author Paul Issott <paul@slitaz.org>
date Thu Sep 01 19:45:03 2011 +0100 (2011-09-01)
parents f0c28c832411
children 8f447cf2eee5
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 DEPENDS="libraw1394"
9 BUILD_DEPENDS="libraw1394 libraw1394-dev"
10 #TARBALL="$PACKAGE-$VERSION.tar.gz"
11 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz"
12 WEB_SITE="http://www.linux1394.org/"
13 #WGET_URL="http://www.linux1394.org/dl/$TARBALL"
14 WGET_URL="http://ftp.debian.org/pool/main/libi/$PACKAGE/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/dev
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }