wok diff reqflow/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents feb2e0c63d21
children 5ea0ce1cecc0
line diff
     1.1 --- a/reqflow/receipt	Thu Jul 16 01:48:33 2015 +0200
     1.2 +++ b/reqflow/receipt	Sun Jun 14 23:18:03 2020 -0400
     1.3 @@ -1,29 +1,32 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="reqflow"
     1.7 -VERSION="1.2.1"
     1.8 +VERSION="1.6.0"
     1.9  CATEGORY="office"
    1.10  SHORT_DESC="Tool for traceability of requirements across documents."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://goeb.github.io/reqflow/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://goeb.github.io/reqflow/"
    1.17  WGET_URL="https://github.com/goeb/reqflow/archive/v$VERSION.tar.gz"
    1.18  
    1.19 -DEPENDS="zlib libzip libxml2 poppler pcre"
    1.20 -BUILD_DEPENDS="wget zlib-dev libzip-dev libxml2-dev poppler-dev pcre-dev"
    1.21 +DEPENDS="libxml2 libzip pcre poppler zlib"
    1.22 +BUILD_DEPENDS="libxml2-dev libzip-dev pcre-dev poppler-dev zlib-dev"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27  	CFLAGS=$(pkg-config --cflags libzip)
    1.28 -	make 2>&1 | sed 's/\.d: No such file/.d: no such file/'
    1.29 +	./configure &&
    1.30 +	make &&
    1.31 +	make install
    1.32 +#	make 2>&1 | sed 's/\.d: No such file/.d: no such file/'
    1.33  }
    1.34  
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36  genpkg_rules()
    1.37  {
    1.38  	mkdir -p $fs/usr/bin
    1.39 -	cp -a $src/req $fs/usr/bin
    1.40 +	cp -a $install/usr/bin/reqflow $fs/usr/bin
    1.41  }
    1.42 -