wok rev 20780
updated check and check-dev (0.9.14 -> 0.12.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 14 14:42:25 2019 +0100 (2019-02-14) |
parents | 17d8ac4203da |
children | aacfeda38a0b |
files | check-dev/receipt check/receipt |
line diff
1.1 --- a/check-dev/receipt Thu Feb 14 13:52:33 2019 +0100 1.2 +++ b/check-dev/receipt Thu Feb 14 14:42:25 2019 +0100 1.3 @@ -1,17 +1,17 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="check-dev" 1.7 -VERSION="0.9.14" 1.8 +VERSION="0.12.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Check development files" 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 -WEB_SITE="http://check.sourceforge.net/" 1.14 +WEB_SITE="https://libcheck.github.io/check/" 1.15 + 1.16 WANTED="check" 1.17 -HOST_ARCH="i486 arm" 1.18 - 1.19 DEPENDS="check pkg-config" 1.20 BUILD_DEPENDS="" 1.21 +HOST_ARCH="i486 arm" 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules()
2.1 --- a/check/receipt Thu Feb 14 13:52:33 2019 +0100 2.2 +++ b/check/receipt Thu Feb 14 14:42:25 2019 +0100 2.3 @@ -1,23 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="check" 2.7 -VERSION="0.9.14" 2.8 +VERSION="0.12.0" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="A unit testing framework for C" 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 -WEB_SITE="http://check.sourceforge.net/" 2.14 +WEB_SITE="https://libcheck.github.io/check/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" 2.18 -HOST_ARCH="i486 arm" 2.19 +WGET_URL="https://github.com/libcheck/$PACKAGE/archive/$VERSION.tar.gz" 2.20 2.21 DEPENDS="" 2.22 -BUILD_DEPENDS="" 2.23 +BUILD_DEPENDS="autoconf" 2.24 +HOST_ARCH="i486 arm" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 - ./configure $CONFIGURE_ARGS && make && make install 2.30 + autoreconf --install 2.31 + ./configure $CONFIGURE_ARGS && 2.32 + make && 2.33 + make install 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg.