wok rev 21256

updated libmms and libmms-dev (0.6 -> 0.6.4)
author Hans-G?nter Theisgen
date Fri Apr 12 10:48:46 2019 +0100 (2019-04-12)
parents 91e519915db2
children be09ecfec9dc
files libmms-dev/receipt libmms/receipt
line diff
     1.1 --- a/libmms-dev/receipt	Fri Apr 12 10:36:15 2019 +0100
     1.2 +++ b/libmms-dev/receipt	Fri Apr 12 10:48:46 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libmms-dev"
     1.7 -VERSION="0.6"
     1.8 +VERSION="0.6.4"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams devel files."
    1.11 +SHORT_DESC="A common library for parsing mms and mmsh streams - development files."
    1.12  MAINTAINER="slitaz@kacper.se"
    1.13  LICENSE="LGPL2.1"
    1.14  WEB_SITE="https://launchpad.net/libmms"
    1.15 +
    1.16  WANTED="libmms"
    1.17 -
    1.18  DEPENDS="libmms 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
    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 $fs/usr/lib
    1.27 +
    1.28 +	cp -a $install/usr/include		$fs/usr
    1.29 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.30 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.31  }
     2.1 --- a/libmms/receipt	Fri Apr 12 10:36:15 2019 +0100
     2.2 +++ b/libmms/receipt	Fri Apr 12 10:48:46 2019 +0100
     2.3 @@ -1,27 +1,29 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libmms"
     2.7 -VERSION="0.6"
     2.8 +VERSION="0.6.4"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams."
    2.11 +SHORT_DESC="A common library for parsing mms and mmsh streams."
    2.12  MAINTAINER="slitaz@kacper.se"
    2.13  LICENSE="LGPL2.1"
    2.14 +WEB_SITE="https://launchpad.net/libmms"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="https://launchpad.net/libmms"
    2.18  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.19  
    2.20  DEPENDS="glib"
    2.21 -BUILD_DEPENDS="pkg-config glib-dev"
    2.22 +BUILD_DEPENDS="glib-dev pkg-config"
    2.23  
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	patch -p1 -i $stuff/libmms.patch
    2.28 +#	patch -p1 -i $stuff/libmms.patch
    2.29  
    2.30 -	./configure \
    2.31 -		--prefix=/usr \
    2.32 +	./configure		\
    2.33 +		--prefix=/usr	\
    2.34  		$CONFIGURE_ARGS &&
    2.35 -	make && make DESTDIR=$DESTDIR install
    2.36 +	make -j 1 &&
    2.37 +	make DESTDIR=$DESTDIR install
    2.38  }
    2.39  
    2.40  # Rules to gen a SliTaz package suitable for Tazpkg.