wok-next annotate libraw1394/receipt @ rev 19829
Rename jack-audio-connection-kit -> jack; add jack2; up gst0-plugins-base, gst0-plugins-good, gst0-plugins-bad, gst0-plugins-full, and other gst0-plugins-* dependencies.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Aug 04 16:04:04 2017 +0300 (2017-08-04) |
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 } |