wok rev 22320

updated yaml and yaml-dev (0.1.4 -> 0.2.2)
author Hans-G?nter Theisgen
date Thu Nov 14 16:00:22 2019 +0100 (2019-11-14)
parents b2ecc21526eb
children a1dd1349c0f0
files yaml-dev/receipt yaml/receipt
line diff
     1.1 --- a/yaml-dev/receipt	Thu Nov 14 15:50:13 2019 +0100
     1.2 +++ b/yaml-dev/receipt	Thu Nov 14 16:00:22 2019 +0100
     1.3 @@ -1,23 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="yaml-dev"
     1.7 -VERSION="0.1.4"
     1.8 +VERSION="0.2.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="yaml dev files."
    1.11 +SHORT_DESC="yaml - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="CC-BY"
    1.14  WEB_SITE="https://pyyaml.org/wiki/LibYAML"
    1.15 +
    1.16 +DEPENDS="pkg-config yaml"
    1.17  WANTED="yaml"
    1.18  
    1.19 -DEPENDS="yaml pkg-config"
    1.20 -
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/*.*a  $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig  $fs/usr/lib
    1.27 -	cp -a $install/usr/include  $fs/usr
    1.28 -	
    1.29 +
    1.30 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.31 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.32 +	cp -a $install/usr/include		$fs/usr
    1.33  }
    1.34 -
     2.1 --- a/yaml/receipt	Thu Nov 14 15:50:13 2019 +0100
     2.2 +++ b/yaml/receipt	Thu Nov 14 16:00:22 2019 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="yaml"
     2.7 -VERSION="0.1.4"
     2.8 +VERSION="0.2.2"
     2.9  CATEGORY="system-tools"
    2.10 -SHORT_DESC="YAML 1.1 parser and emitter written in C."
    2.11 +SHORT_DESC="YAML parser and emitter written in C."
    2.12  MAINTAINER="erjo@slitaz.org"
    2.13  LICENSE="CC-BY"
    2.14  WEB_SITE="https://pyyaml.org/wiki/LibYAML"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17  WGET_URL="https://pyyaml.org/download/libyaml/$TARBALL"
    2.18  
    2.19 @@ -16,13 +17,14 @@
    2.20  # Rules to configure and make the package.
    2.21  compile_rules()
    2.22  {
    2.23 -	cd $src
    2.24 -	./configure $CONFIGURE_ARGS && make && make install
    2.25 +	./configure $CONFIGURE_ARGS &&
    2.26 +	make &&
    2.27 +	make install
    2.28  }
    2.29  
    2.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.31  genpkg_rules()
    2.32  {
    2.33  	mkdir -p $fs/usr/lib
    2.34 -	cp -a $install/usr/lib/*.so*  $fs/usr/lib
    2.35 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.36  }