# HG changeset patch # User Hans-G?nter Theisgen # Date 1555254720 -3600 # Node ID 6ab151d44024aeba42083141fc1319f736ab0ffb # Parent 2a7968e9d2a743b03fd1bd15313593ec212247e4 updated libqcow and libqcow-dev (20120225 -> 20181227) diff -r 2a7968e9d2a7 -r 6ab151d44024 libqcow-dev/receipt --- a/libqcow-dev/receipt Sun Apr 14 11:33:20 2019 +0200 +++ b/libqcow-dev/receipt Sun Apr 14 16:12:00 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libqcow-dev" -VERSION="20120225" +VERSION="20181227" CATEGORY="development" SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) images, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL3" WEB_SITE="https://github.com/libyal/libqcow" + WANTED="libqcow" - DEPENDS="libqcow 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/lib/pkgconfig $fs/usr + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr } diff -r 2a7968e9d2a7 -r 6ab151d44024 libqcow/receipt --- a/libqcow/receipt Sun Apr 14 11:33:20 2019 +0200 +++ b/libqcow/receipt Sun Apr 14 16:12:00 2019 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="libqcow" -VERSION="20120225" +VERSION="20181227" CATEGORY="misc" SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) image files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL3" +WEB_SITE="https://github.com/libyal/libqcow" + TARBALL="$PACKAGE-alpha-$VERSION.tar.gz" -WEB_SITE="https://github.com/libyal/libqcow" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/libyal/$PACKAGE/releases/download/$VERSION/$TARBALL" DEPENDS="fuse libcrypto" BUILD_DEPENDS="fuse-dev openssl-dev" @@ -16,11 +17,12 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --mandir=/usr/share/man \ - --localstatedir=/var \ - $CONFIGURE_ARGS && - make && + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install } @@ -28,6 +30,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }