wok-next view libraw1394/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents 5841522533ec
children
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="devel@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="$PACKAGE-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 fix libtool &&
19 make &&
20 make install
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 libraw1394) copy @std;;
26 *-dev) copy @dev;;
27 esac
28 }
30 # Make device node
31 post_install_libraw1394() {
32 mkdir -p $1/dev
33 mknod -m 0666 $1/dev/raw1394 c 171 0
34 chown root:root $1/dev/raw1394
35 }