wok annotate reqflow/receipt @ rev 23297
updated perl-class-accessor (0.34 -> 0.51)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 29 16:31:27 2020 +0100 (2020-03-29) |
parents | feb2e0c63d21 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@16070 | 1 # SliTaz package receipt. |
pascal@16070 | 2 |
pascal@16070 | 3 PACKAGE="reqflow" |
Hans-G?nter@21841 | 4 VERSION="1.6.0" |
pascal@16070 | 5 CATEGORY="office" |
pascal@16070 | 6 SHORT_DESC="Tool for traceability of requirements across documents." |
pascal@16070 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16070 | 8 LICENSE="GPL2" |
Hans-G?nter@21841 | 9 WEB_SITE="http://goeb.github.io/reqflow/" |
Hans-G?nter@21841 | 10 |
pascal@16070 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@16070 | 12 WGET_URL="https://github.com/goeb/reqflow/archive/v$VERSION.tar.gz" |
pascal@16070 | 13 |
Hans-G?nter@21841 | 14 DEPENDS="libxml2 libzip pcre poppler zlib" |
Hans-G?nter@21841 | 15 BUILD_DEPENDS="libxml2-dev libzip-dev pcre-dev poppler-dev zlib-dev" |
pascal@16070 | 16 |
pascal@16070 | 17 # Rules to configure and make the package. |
pascal@16070 | 18 compile_rules() |
pascal@16070 | 19 { |
pascal@16070 | 20 CFLAGS=$(pkg-config --cflags libzip) |
Hans-G?nter@21841 | 21 ./configure && |
Hans-G?nter@21841 | 22 make && |
Hans-G?nter@21841 | 23 make install |
Hans-G?nter@21841 | 24 # make 2>&1 | sed 's/\.d: No such file/.d: no such file/' |
pascal@16070 | 25 } |
pascal@16070 | 26 |
pascal@16070 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16070 | 28 genpkg_rules() |
pascal@16070 | 29 { |
pascal@16070 | 30 mkdir -p $fs/usr/bin |
Hans-G?nter@21841 | 31 cp -a $install/usr/bin/reqflow $fs/usr/bin |
pascal@16070 | 32 } |