wok-6.x annotate groff/receipt @ rev 21810
Add python-cffi, python-cparser & python-cryptography
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 17 18:44:53 2019 +0200 (2019-08-17) |
parents | a40e9b1703f4 |
children | 71360a13cd94 |
rev | line source |
---|---|
rocky@5279 | 1 # SliTaz package receipt. |
rocky@5279 | 2 |
rocky@5279 | 3 PACKAGE="groff" |
Hans-G?nter@21001 | 4 VERSION="1.22.4" |
rocky@5279 | 5 CATEGORY="utilities" |
Hans-G?nter@21001 | 6 TAGS="formatting" |
rocky@5279 | 7 SHORT_DESC="The GNU troff text-formatting system." |
rocky@5279 | 8 MAINTAINER="rocky@slitaz.org" |
pascal@15589 | 9 LICENSE="GPL3" |
Hans-G?nter@21001 | 10 WEB_SITE="https://www.gnu.org/software/groff/groff.html" |
Hans-G?nter@21001 | 11 |
rocky@5279 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
rocky@5279 | 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
rocky@5279 | 14 |
Hans-G?nter@21002 | 15 BUILD_DEPENDS="ghostscript texinfo" |
pascal@15589 | 16 |
rocky@5279 | 17 # Rules to configure and make the package. |
rocky@5279 | 18 compile_rules() |
rocky@5279 | 19 { |
Hans-G?nter@21001 | 20 touch doc/gnu.eps |
Hans-G?nter@21001 | 21 |
Hans-G?nter@21001 | 22 ./configure \ |
Hans-G?nter@21001 | 23 --without-x \ |
Hans-G?nter@21001 | 24 $CONFIGURE_ARGS && |
Hans-G?nter@21001 | 25 make -j 1 && |
Hans-G?nter@21001 | 26 make install |
rocky@5279 | 27 } |
rocky@5279 | 28 |
rocky@5279 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
rocky@5279 | 30 genpkg_rules() |
rocky@5279 | 31 { |
Hans-G?nter@21001 | 32 mkdir -p $fs/usr/share |
Hans-G?nter@21001 | 33 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21001 | 34 cp -a $install/usr/lib $fs/usr |
Hans-G?nter@21001 | 35 cp -a $install/usr/share/groff $fs/usr/share |
rocky@5279 | 36 } |