wok view groff/receipt @ rev 11183

Up: pam to 1.1.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Nov 03 00:28:41 2011 +0000 (2011-11-03)
parents 430b278c204b
children 76aaa18ade61
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 BUILD_DEPENDS="ghostscript"
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 touch doc/gnu.eps
18 ./configure \
19 --without-x \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 cp -a $_pkg/usr/share/groff $fs/usr
32 }