# HG changeset patch # User Hans-G?nter Theisgen # Date 1568477914 -3600 # Node ID 08ced20655f5e170d190f1529cfcb100aa113349 # Parent 0090a0579e8753694ced89b1ed5b1b10fa3c010a updated reqflow (1.2.1 -> 1.6.0) diff -r 0090a0579e87 -r 08ced20655f5 reqflow/receipt --- a/reqflow/receipt Sat Sep 14 16:43:37 2019 +0100 +++ b/reqflow/receipt Sat Sep 14 17:18:34 2019 +0100 @@ -1,29 +1,32 @@ # SliTaz package receipt. PACKAGE="reqflow" -VERSION="1.2.1" +VERSION="1.6.0" CATEGORY="office" SHORT_DESC="Tool for traceability of requirements across documents." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://goeb.github.io/reqflow/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://goeb.github.io/reqflow/" WGET_URL="https://github.com/goeb/reqflow/archive/v$VERSION.tar.gz" -DEPENDS="zlib libzip libxml2 poppler pcre" -BUILD_DEPENDS="wget zlib-dev libzip-dev libxml2-dev poppler-dev pcre-dev" +DEPENDS="libxml2 libzip pcre poppler zlib" +BUILD_DEPENDS="libxml2-dev libzip-dev pcre-dev poppler-dev zlib-dev" # Rules to configure and make the package. compile_rules() { CFLAGS=$(pkg-config --cflags libzip) - make 2>&1 | sed 's/\.d: No such file/.d: no such file/' + ./configure && + make && + make install +# make 2>&1 | sed 's/\.d: No such file/.d: no such file/' } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/bin - cp -a $src/req $fs/usr/bin + cp -a $install/usr/bin/reqflow $fs/usr/bin } -