wok annotate groff/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 76aaa18ade61
children a40e9b1703f4
rev   line source
rocky@5279 1 # SliTaz package receipt.
rocky@5279 2
rocky@5279 3 PACKAGE="groff"
slaxemulator@10112 4 VERSION="1.21"
rocky@5279 5 CATEGORY="utilities"
rocky@5279 6 SHORT_DESC="The GNU troff text-formatting system."
rocky@5279 7 MAINTAINER="rocky@slitaz.org"
pascal@15589 8 LICENSE="GPL3"
rocky@5279 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
rocky@5279 10 WEB_SITE="http://www.gnu.org/software/groff/groff.html"
rocky@5279 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
rocky@5279 12
pascal@15589 13 BUILD_DEPENDS="ghostscript"
pascal@15589 14
rocky@5279 15 # Rules to configure and make the package.
rocky@5279 16 compile_rules()
rocky@5279 17 {
rocky@5279 18 cd $src
rocky@5279 19 touch doc/gnu.eps
slaxemulator@10112 20 ./configure \
rocky@5279 21 --without-x \
rocky@5279 22 $CONFIGURE_ARGS &&
rocky@5279 23 make &&
slaxemulator@10112 24 make install
rocky@5279 25 }
rocky@5279 26
rocky@5279 27 # Rules to gen a SliTaz package suitable for Tazpkg.
rocky@5279 28 genpkg_rules()
rocky@5279 29 {
slaxemulator@10112 30 mkdir -p $fs/usr/share
pascal@15589 31 cp -a $install/usr/bin $fs/usr
pascal@15589 32 cp -a $install/usr/lib $fs/usr
pascal@15589 33 cp -a $install/usr/share/groff $fs/usr/share
rocky@5279 34 }