wok-next annotate 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
rev   line source
al@19829 1 # SliTaz package receipt v2.
pankso@295 2
pankso@295 3 PACKAGE="libraw1394"
al@19829 4 VERSION="2.1.2"
pankso@295 5 CATEGORY="system-tools"
al@19829 6 SHORT_DESC="IEEE 1394 is a standard defining a high speed serial bus"
pankso@295 7 MAINTAINER="pankso@slitaz.org"
pascal@15482 8 LICENSE="LGPL2.1"
al@19829 9 WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page"
al@19829 10
al@19829 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19829 12 WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL"
al@19829 13
al@19829 14 SPLIT="libraw1394-dev"
pankso@295 15
pankso@295 16 # Rules to configure and make the package.
pankso@295 17 compile_rules()
pankso@295 18 {
al@19829 19 ./configure $CONFIGURE_ARGS && make && make install
pankso@295 20 }
pankso@295 21
pankso@295 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 23 genpkg_rules()
pankso@295 24 {
al@19829 25 case $PACKAGE in
al@19829 26 libraw1394) copy @std;;
al@19829 27 *-dev) copy @dev;;
al@19829 28 esac
pankso@295 29 }
pankso@295 30
al@19829 31 # Make device node
al@19829 32 post_install_libraw1394() {
al@19829 33 mkdir -p $1/dev
al@19829 34 mknod -m 0666 $1/dev/raw1394 c 171 0
al@19829 35 chown root:root $1/dev/raw1394
al@19829 36 }