wok rev 21282
updated libraw1394 and libraw1394-dev (2.0.7 -> 2.1.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Apr 14 17:12:58 2019 +0100 (2019-04-14) |
parents | 1dc9b08bfcea |
children | f2a4bea2538f |
files | libraw1394-dev/receipt libraw1394/receipt |
line diff
1.1 --- a/libraw1394-dev/receipt Sun Apr 14 17:00:35 2019 +0100 1.2 +++ b/libraw1394-dev/receipt Sun Apr 14 17:12:58 2019 +0100 1.3 @@ -1,22 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libraw1394-dev" 1.7 -VERSION="2.0.7" 1.8 +VERSION="2.1.2" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="IEEE 1394 static library and devel files." 1.11 +SHORT_DESC="IEEE 1394 static library and development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 -WANTED="libraw1394" 1.15 WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" 1.16 1.17 +WANTED="libraw1394" 1.18 DEPENDS="libraw1394 pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.26 + 1.27 + cp -a $install/usr/include $fs/usr 1.28 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.29 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 } 1.31 -
2.1 --- a/libraw1394/receipt Sun Apr 14 17:00:35 2019 +0100 2.2 +++ b/libraw1394/receipt Sun Apr 14 17:12:58 2019 +0100 2.3 @@ -1,35 +1,36 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libraw1394" 2.7 -VERSION="2.0.7" 2.8 +VERSION="2.1.2" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="IEEE 1394 is a standard defining a high speed serial bus." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" 2.17 WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL" 2.18 2.19 # Rules to configure and make the package. 2.20 compile_rules() 2.21 { 2.22 - cd $src 2.23 - ./configure \ 2.24 - --prefix=/usr \ 2.25 - --mandir=/usr/share/man \ 2.26 + ./configure \ 2.27 + --prefix=/usr \ 2.28 + --mandir=/usr/share/man \ 2.29 $CONFIGURE_ARGS && 2.30 - make && 2.31 + make -j 1 && 2.32 make DESTDIR=$DESTDIR install 2.33 } 2.34 2.35 # Rules to gen a SliTaz package suitable for Tazpkg. 2.36 genpkg_rules() 2.37 { 2.38 - mkdir -p $fs/usr/lib $fs/dev 2.39 - cp -a $install/usr/bin $fs/usr 2.40 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.41 - # Dev node 2.42 + mkdir -p $fs/usr/lib 2.43 + mkdir -p $fs/dev 2.44 + 2.45 + cp -a $install/usr/bin $fs/usr 2.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.47 + # Device node 2.48 mknod -m 0666 $fs/dev/raw1394 c 171 0 2.49 chown root.root $fs/dev/raw1394 2.50 } 2.51 -