wok rev 21280

updated libqcow and libqcow-dev (20120225 -> 20181227)
author Hans-G?nter Theisgen
date Sun Apr 14 16:12:00 2019 +0100 (2019-04-14)
parents 2a7968e9d2a7
children 1dc9b08bfcea
files libqcow-dev/receipt libqcow/receipt
line diff
     1.1 --- a/libqcow-dev/receipt	Sun Apr 14 11:33:20 2019 +0200
     1.2 +++ b/libqcow-dev/receipt	Sun Apr 14 16:12:00 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libqcow-dev"
     1.7 -VERSION="20120225"
     1.8 +VERSION="20181227"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) images, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="LGPL3"
    1.13  WEB_SITE="https://github.com/libyal/libqcow"
    1.14 +
    1.15  WANTED="libqcow"
    1.16 -
    1.17  DEPENDS="libqcow pkg-config"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.   
    1.20  genpkg_rules()                                      
    1.21  {
    1.22  	mkdir -p $fs/usr/lib
    1.23 -	cp -a $install/usr/include $fs/usr
    1.24 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr
    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
    1.30  }
     2.1 --- a/libqcow/receipt	Sun Apr 14 11:33:20 2019 +0200
     2.2 +++ b/libqcow/receipt	Sun Apr 14 16:12:00 2019 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libqcow"
     2.7 -VERSION="20120225"
     2.8 +VERSION="20181227"
     2.9  CATEGORY="misc"
    2.10  SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) image files."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="LGPL3"
    2.13 +WEB_SITE="https://github.com/libyal/libqcow"
    2.14 +
    2.15  TARBALL="$PACKAGE-alpha-$VERSION.tar.gz"
    2.16 -WEB_SITE="https://github.com/libyal/libqcow"
    2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 +WGET_URL="https://github.com/libyal/$PACKAGE/releases/download/$VERSION/$TARBALL"
    2.19  
    2.20  DEPENDS="fuse libcrypto"
    2.21  BUILD_DEPENDS="fuse-dev openssl-dev"
    2.22 @@ -16,11 +17,12 @@
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26 -	cd $src
    2.27 -	./configure --prefix=/usr --mandir=/usr/share/man \
    2.28 -		--localstatedir=/var \
    2.29 -	$CONFIGURE_ARGS &&
    2.30 -	make &&
    2.31 +	./configure			\
    2.32 +		--prefix=/usr		\
    2.33 +		--mandir=/usr/share/man	\
    2.34 +		--localstatedir=/var	\
    2.35 +		$CONFIGURE_ARGS &&
    2.36 +	make -j 1 &&
    2.37  	make DESTDIR=$DESTDIR install
    2.38  }
    2.39  
    2.40 @@ -28,6 +30,7 @@
    2.41  genpkg_rules()                                      
    2.42  {
    2.43  	mkdir -p $fs/usr/lib
    2.44 -	cp -a $install/usr/bin $fs/usr
    2.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.46 +
    2.47 +	cp -a $install/usr/bin		$fs/usr
    2.48 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.49  }