wok rev 21260

updated libmspack and libmspack-dev (0.5alpha -> 0.10.1)
author Hans-G?nter Theisgen
date Fri Apr 12 12:45:02 2019 +0100 (2019-04-12)
parents 5947772a3cfc
children 92aedd4490b5
files libmspack-dev/receipt libmspack/receipt
line diff
     1.1 --- a/libmspack-dev/receipt	Fri Apr 12 11:33:57 2019 +0100
     1.2 +++ b/libmspack-dev/receipt	Fri Apr 12 12:45:02 2019 +0100
     1.3 @@ -1,21 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libmspack-dev"
     1.7 -VERSION="0.5alpha"
     1.8 +VERSION="0.10.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files for libmspack"
    1.11 -MAINTAINER="nneul@neulinger.org"   
    1.12 +SHORT_DESC="Development files for libmspack."
    1.13 +MAINTAINER="nneul@neulinger.org"
    1.14  LICENSE="LGPL"
    1.15  WEB_SITE="https://www.cabextract.org.uk/libmspack/"    
    1.16 +
    1.17  WANTED="libmspack"
    1.18  DEPENDS="libmspack pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	mkdir -p $fs/usr/lib $fs/usr/lib/pkgconfig
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig
    1.27 +	mkdir -p $fs/usr/lib
    1.28 +	mkdir -p $fs/usr/lib/pkgconfig
    1.29 +
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.32 +	cp -a $install/usr/lib/pkgconfig/*.pc	$fs/usr/lib/pkgconfig
    1.33  }
    1.34 -
     2.1 --- a/libmspack/receipt	Fri Apr 12 11:33:57 2019 +0100
     2.2 +++ b/libmspack/receipt	Fri Apr 12 12:45:02 2019 +0100
     2.3 @@ -1,24 +1,26 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libmspack"
     2.7 -VERSION="0.5alpha"
     2.8 +VERSION="0.10.1"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="A library which allows extracting from MS CAB files"
    2.11 +SHORT_DESC="A library which allows extracting from MS CAB files."
    2.12  MAINTAINER="nneul@neulinger.org"
    2.13  LICENSE="LGPL"
    2.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.15  WEB_SITE="https://www.cabextract.org.uk/libmspack/"
    2.16 -WGET_URL="https://www.cabextract.org.uk/libmspack/$TARBALL"
    2.17 +
    2.18 +TARBALL="$PACKAGE-${VERSION}alpha.tar.gz"
    2.19 +WGET_URL="https://www.cabextract.org.uk/$PACKAGE/$TARBALL"
    2.20  
    2.21  # Rules to configure and make the package.
    2.22  compile_rules()
    2.23  {
    2.24 -	./configure \
    2.25 -		--prefix=/usr \
    2.26 -		--infodir=/usr/share/info \
    2.27 -		--mandir=/usr/share/man \
    2.28 +	./configure				\
    2.29 +		--prefix=/usr			\
    2.30 +		--infodir=/usr/share/info	\
    2.31 +		--mandir=/usr/share/man		\
    2.32  		$CONFIGURE_ARGS &&
    2.33 -	make && make DESTDIR=$DESTDIR install
    2.34 +	make -j 1 &&
    2.35 +	make DESTDIR=$DESTDIR install
    2.36  }
    2.37  
    2.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.39 @@ -27,4 +29,3 @@
    2.40  	mkdir -p $fs/usr/lib
    2.41  	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.42  }
    2.43 -