wok-next diff check/receipt @ rev 20317

Up kmod, lxqt, oxygen-icons, slitaz-base-files, slitaz-configs; add eggwm-qt5, pencil2d.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 11 16:06:23 2017 +0200 (2017-11-11)
parents f7d9f142f79d
children 90a5eb560fd6
line diff
     1.1 --- a/check/receipt	Thu Dec 29 07:31:53 2016 +0200
     1.2 +++ b/check/receipt	Sat Nov 11 16:06:23 2017 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="check"
     1.8 -VERSION="0.10.0"
     1.9 +VERSION="0.11.0"
    1.10  CATEGORY="system-tools"
    1.11  SHORT_DESC="A unit testing framework for C"
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13 @@ -10,16 +10,24 @@
    1.14  HOST_ARCH="i486 arm"
    1.15  
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +WGET_URL="https://github.com/libcheck/check/releases/download/$VERSION/$TARBALL"
    1.19 +
    1.20 +SPLIT="check-dev"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	./configure $CONFIGURE_ARGS && make && make install
    1.26 +	./configure \
    1.27 +		--disable-static \
    1.28 +		$CONFIGURE_ARGS &&
    1.29 +	make && make install
    1.30  }
    1.31  
    1.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.33  genpkg_rules()
    1.34  {
    1.35 -	cook_copy_files *.so*
    1.36 +	case $PACKAGE in
    1.37 +		check) copy *.so* ;;
    1.38 +		check-dev) copy @dev checkmk ;;
    1.39 +	esac
    1.40  }