wok-current rev 22591
updated check and check-dev (0.12.0 -> 0.13.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 07 15:59:30 2020 +0100 (2020-01-07) |
parents | f3bcc468a2c4 |
children | 676f346df719 |
files | check-dev/receipt check/receipt |
line diff
1.1 --- a/check-dev/receipt Tue Jan 07 15:52:15 2020 +0100 1.2 +++ b/check-dev/receipt Tue Jan 07 15:59:30 2020 +0100 1.3 @@ -1,25 +1,27 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="check-dev" 1.7 -VERSION="0.12.0" 1.8 +VERSION="0.13.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Check development files" 1.11 +SHORT_DESC="Check - development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="https://libcheck.github.io/check/" 1.15 1.16 -WANTED="check" 1.17 DEPENDS="check pkg-config" 1.18 BUILD_DEPENDS="" 1.19 +WANTED="check" 1.20 + 1.21 HOST_ARCH="i486 arm" 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 - mkdir -p $fs/usr/lib $fs/usr/share 1.27 - 1.28 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.29 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 - cp -a $install/usr/include $fs/usr 1.31 - cp -a $install/usr/share/aclocal $fs/usr/share 1.32 -} 1.33 \ No newline at end of file 1.34 + mkdir -p $fs/usr/lib 1.35 + mkdir -p $fs/usr/share 1.36 + 1.37 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.38 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.39 + cp -a $install/usr/include $fs/usr 1.40 + cp -a $install/usr/share/aclocal $fs/usr/share 1.41 +}
2.1 --- a/check/receipt Tue Jan 07 15:52:15 2020 +0100 2.2 +++ b/check/receipt Tue Jan 07 15:59:30 2020 +0100 2.3 @@ -1,9 +1,9 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="check" 2.7 -VERSION="0.12.0" 2.8 +VERSION="0.13.0" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="A unit testing framework for C" 2.11 +SHORT_DESC="A unit testing framework for C." 2.12 MAINTAINER="erjo@slitaz.org" 2.13 LICENSE="LGPL2.1" 2.14 WEB_SITE="https://libcheck.github.io/check/" 2.15 @@ -13,12 +13,13 @@ 2.16 2.17 DEPENDS="" 2.18 BUILD_DEPENDS="autoconf automake libtool" 2.19 + 2.20 HOST_ARCH="i486 arm" 2.21 2.22 # Rules to configure and make the package. 2.23 compile_rules() 2.24 { 2.25 - autoreconf --install 2.26 + autoreconf --install && 2.27 ./configure $CONFIGURE_ARGS && 2.28 make && 2.29 make install 2.30 @@ -28,5 +29,5 @@ 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 }