wok view groff/receipt @ rev 12149

dovecot: fix depends
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Mar 15 00:09:31 2012 +0100 (2012-03-15)
parents 712198090123
children d1c17bd2c2bc
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/share
32 }