wok-6.x diff libraw1394/receipt @ rev 22250
updated xorg-xclock (1.0.6 -> 1.0.9)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Nov 12 16:43:09 2019 +0100 (2019-11-12) |
parents | 8685ee90f6aa |
children | 71360a13cd94 |
line diff
1.1 --- a/libraw1394/receipt Fri Feb 15 11:29:31 2019 +0100 1.2 +++ b/libraw1394/receipt Tue Nov 12 16:43:09 2019 +0100 1.3 @@ -1,35 +1,36 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libraw1394" 1.7 -VERSION="2.0.7" 1.8 +VERSION="2.1.2" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="IEEE 1394 is a standard defining a high speed serial bus." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" 1.17 WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL" 1.18 1.19 # Rules to configure and make the package. 1.20 compile_rules() 1.21 { 1.22 - cd $src 1.23 - ./configure \ 1.24 - --prefix=/usr \ 1.25 - --mandir=/usr/share/man \ 1.26 + ./configure \ 1.27 + --prefix=/usr \ 1.28 + --mandir=/usr/share/man \ 1.29 $CONFIGURE_ARGS && 1.30 - make && 1.31 + make -j 1 && 1.32 make DESTDIR=$DESTDIR install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 - mkdir -p $fs/usr/lib $fs/dev 1.39 - cp -a $install/usr/bin $fs/usr 1.40 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.41 - # Dev node 1.42 + mkdir -p $fs/usr/lib 1.43 + mkdir -p $fs/dev 1.44 + 1.45 + cp -a $install/usr/bin $fs/usr 1.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.47 + # Device node 1.48 mknod -m 0666 $fs/dev/raw1394 c 171 0 1.49 chown root.root $fs/dev/raw1394 1.50 } 1.51 -