wok-next view libiec61883/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents 8f447cf2eee5
children 25deb7c6df08
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libiec61883"
4 VERSION="1.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="libiec61883 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 BUILD_DEPENDS="libraw1394-dev"
15 SPLIT="libiec61883-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 case $PACKAGE in
27 libiec61883)
28 copy @std
29 DEPENDS="libraw1394"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="libiec61883 libraw1394-dev"
34 ;;
35 esac
36 }