# HG changeset patch # User Hans-G?nter Theisgen # Date 1573743622 -3600 # Node ID 482c418254f671b5f0357cd6bb31b8d53dc73b7e # Parent b2ecc21526eb9a12300aa721d2bfe4904bb42561 updated yaml and yaml-dev (0.1.4 -> 0.2.2) diff -r b2ecc21526eb -r 482c418254f6 yaml-dev/receipt --- a/yaml-dev/receipt Thu Nov 14 15:50:13 2019 +0100 +++ b/yaml-dev/receipt Thu Nov 14 16:00:22 2019 +0100 @@ -1,23 +1,22 @@ # SliTaz package receipt. PACKAGE="yaml-dev" -VERSION="0.1.4" +VERSION="0.2.2" CATEGORY="development" -SHORT_DESC="yaml dev files." +SHORT_DESC="yaml - development files." MAINTAINER="erjo@slitaz.org" LICENSE="CC-BY" WEB_SITE="https://pyyaml.org/wiki/LibYAML" + +DEPENDS="pkg-config yaml" WANTED="yaml" -DEPENDS="yaml pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr - + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } - diff -r b2ecc21526eb -r 482c418254f6 yaml/receipt --- a/yaml/receipt Thu Nov 14 15:50:13 2019 +0100 +++ b/yaml/receipt Thu Nov 14 16:00:22 2019 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="yaml" -VERSION="0.1.4" +VERSION="0.2.2" CATEGORY="system-tools" -SHORT_DESC="YAML 1.1 parser and emitter written in C." +SHORT_DESC="YAML parser and emitter written in C." MAINTAINER="erjo@slitaz.org" LICENSE="CC-BY" WEB_SITE="https://pyyaml.org/wiki/LibYAML" + TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://pyyaml.org/download/libyaml/$TARBALL" @@ -16,13 +17,14 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure $CONFIGURE_ARGS && make && make install + ./configure $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }