wok diff libqcow/receipt @ rev 23595

updated qoauth (1.0 -> 2.0.0)
author Hans-G?nter Theisgen
date Wed Apr 08 14:40:29 2020 +0100 (2020-04-08)
parents 8dd8bab3f0ca
children 5ea0ce1cecc0
line diff
     1.1 --- a/libqcow/receipt	Thu Jan 24 14:51:04 2019 +0100
     1.2 +++ b/libqcow/receipt	Wed Apr 08 14:40:29 2020 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libqcow"
     1.7 -VERSION="20120225"
     1.8 +VERSION="20181227"
     1.9  CATEGORY="misc"
    1.10  SHORT_DESC="Tools for reading QEMU Copy-On-Write (QCOW) image 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  TARBALL="$PACKAGE-alpha-$VERSION.tar.gz"
    1.16 -WEB_SITE="https://github.com/libyal/libqcow"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +WGET_URL="https://github.com/libyal/$PACKAGE/releases/download/$VERSION/$TARBALL"
    1.19  
    1.20  DEPENDS="fuse libcrypto"
    1.21  BUILD_DEPENDS="fuse-dev openssl-dev"
    1.22 @@ -16,11 +17,12 @@
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	cd $src
    1.27 -	./configure --prefix=/usr --mandir=/usr/share/man \
    1.28 -		--localstatedir=/var \
    1.29 -	$CONFIGURE_ARGS &&
    1.30 -	make &&
    1.31 +	./configure			\
    1.32 +		--prefix=/usr		\
    1.33 +		--mandir=/usr/share/man	\
    1.34 +		--localstatedir=/var	\
    1.35 +		$CONFIGURE_ARGS &&
    1.36 +	make -j 1 &&
    1.37  	make DESTDIR=$DESTDIR install
    1.38  }
    1.39  
    1.40 @@ -28,6 +30,7 @@
    1.41  genpkg_rules()                                      
    1.42  {
    1.43  	mkdir -p $fs/usr/lib
    1.44 -	cp -a $install/usr/bin $fs/usr
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.46 +
    1.47 +	cp -a $install/usr/bin		$fs/usr
    1.48 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.49  }