# HG changeset patch # User Hans-G?nter Theisgen # Date 1555258378 -3600 # Node ID 6a0e8480a13be76e75bdf40bce794116a010ce5f # Parent 1dc9b08bfceacdd92ade3f94062e8c4f1f1e5678 updated libraw1394 and libraw1394-dev (2.0.7 -> 2.1.2) diff -r 1dc9b08bfcea -r 6a0e8480a13b libraw1394-dev/receipt --- a/libraw1394-dev/receipt Sun Apr 14 17:00:35 2019 +0100 +++ b/libraw1394-dev/receipt Sun Apr 14 17:12:58 2019 +0100 @@ -1,22 +1,22 @@ # SliTaz package receipt. PACKAGE="libraw1394-dev" -VERSION="2.0.7" +VERSION="2.1.2" CATEGORY="development" -SHORT_DESC="IEEE 1394 static library and devel files." +SHORT_DESC="IEEE 1394 static library and development files." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" -WANTED="libraw1394" WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" +WANTED="libraw1394" DEPENDS="libraw1394 pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib cp -a $install/usr/lib/pkgconfig $fs/usr/lib } - diff -r 1dc9b08bfcea -r 6a0e8480a13b libraw1394/receipt --- a/libraw1394/receipt Sun Apr 14 17:00:35 2019 +0100 +++ b/libraw1394/receipt Sun Apr 14 17:12:58 2019 +0100 @@ -1,35 +1,36 @@ # SliTaz package receipt. PACKAGE="libraw1394" -VERSION="2.0.7" +VERSION="2.1.2" CATEGORY="system-tools" SHORT_DESC="IEEE 1394 is a standard defining a high speed serial bus." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && + make -j 1 && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/dev - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib - # Dev node + mkdir -p $fs/usr/lib + mkdir -p $fs/dev + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + # Device node mknod -m 0666 $fs/dev/raw1394 c 171 0 chown root.root $fs/dev/raw1394 } -