# HG changeset patch # User Hans-G?nter Theisgen # Date 1578409170 -3600 # Node ID 5fa396eb0eeb3cc274e7af0e4d8bc8f8378ab2bf # Parent f3bcc468a2c49983af93bb24574a13bcc8425158 updated check and check-dev (0.12.0 -> 0.13.0) diff -r f3bcc468a2c4 -r 5fa396eb0eeb check-dev/receipt --- a/check-dev/receipt Tue Jan 07 15:52:15 2020 +0100 +++ b/check-dev/receipt Tue Jan 07 15:59:30 2020 +0100 @@ -1,25 +1,27 @@ # SliTaz package receipt. PACKAGE="check-dev" -VERSION="0.12.0" +VERSION="0.13.0" CATEGORY="development" -SHORT_DESC="Check development files" +SHORT_DESC="Check - development files." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://libcheck.github.io/check/" -WANTED="check" DEPENDS="check pkg-config" BUILD_DEPENDS="" +WANTED="check" + HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - - 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/share/aclocal $fs/usr/share -} \ No newline at end of file + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + 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/share/aclocal $fs/usr/share +} diff -r f3bcc468a2c4 -r 5fa396eb0eeb check/receipt --- a/check/receipt Tue Jan 07 15:52:15 2020 +0100 +++ b/check/receipt Tue Jan 07 15:59:30 2020 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="check" -VERSION="0.12.0" +VERSION="0.13.0" CATEGORY="system-tools" -SHORT_DESC="A unit testing framework for C" +SHORT_DESC="A unit testing framework for C." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://libcheck.github.io/check/" @@ -13,12 +13,13 @@ DEPENDS="" BUILD_DEPENDS="autoconf automake libtool" + HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { - autoreconf --install + autoreconf --install && ./configure $CONFIGURE_ARGS && make && make install @@ -28,5 +29,5 @@ 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 }