wok view libraw1394/receipt @ rev 20821

updated deluge (1.3.6 -> 1.3.15)
author Hans-G?nter Theisgen
date Tue Feb 19 14:13:56 2019 +0100 (2019-02-19)
parents 86790a278e70
children 6a0e8480a13b
line source
1 # SliTaz package receipt.
3 PACKAGE="libraw1394"
4 VERSION="2.0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="IEEE 1394 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 WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page"
11 WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/dev
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 # Dev node
32 mknod -m 0666 $fs/dev/raw1394 c 171 0
33 chown root.root $fs/dev/raw1394
34 }