wok view groff/receipt @ rev 20922

updated flam3 again (3.0 -> 3.1.1)
author Hans-G?nter Theisgen
date Fri Mar 01 17:48:33 2019 +0100 (2019-03-01)
parents 76aaa18ade61
children a40e9b1703f4
line source
1 # SliTaz package receipt.
3 PACKAGE="groff"
4 VERSION="1.21"
5 CATEGORY="utilities"
6 SHORT_DESC="The GNU troff text-formatting system."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/groff/groff.html"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="ghostscript"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 touch doc/gnu.eps
20 ./configure \
21 --without-x \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share/groff $fs/usr/share
34 }