wok-next view libraw1394/receipt @ rev 20250

jwm, lockdis: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 07 12:15:09 2017 +0100 (2017-11-07)
parents 8d6f480bf664
children 5841522533ec
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libraw1394"
4 VERSION="2.1.2"
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 WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL"
14 SPLIT="libraw1394-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 case $PACKAGE in
26 libraw1394) copy @std;;
27 *-dev) copy @dev;;
28 esac
29 }
31 # Make device node
32 post_install_libraw1394() {
33 mkdir -p $1/dev
34 mknod -m 0666 $1/dev/raw1394 c 171 0
35 chown root:root $1/dev/raw1394
36 }