wok view reqflow/receipt @ rev 20102

Add plsh & pypdf2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 09 13:07:28 2017 +0200 (2017-10-09)
parents 6430769b32b3
children 08ced20655f5
line source
1 # SliTaz package receipt.
3 PACKAGE="reqflow"
4 VERSION="1.2.1"
5 CATEGORY="office"
6 SHORT_DESC="Tool for traceability of requirements across documents."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://goeb.github.io/reqflow/"
11 WGET_URL="https://github.com/goeb/reqflow/archive/v$VERSION.tar.gz"
13 DEPENDS="zlib libzip libxml2 poppler pcre"
14 BUILD_DEPENDS="wget zlib-dev libzip-dev libxml2-dev poppler-dev pcre-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 CFLAGS=$(pkg-config --cflags libzip)
20 make 2>&1 | sed 's/\.d: No such file/.d: no such file/'
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/req $fs/usr/bin
28 }