wok-next view groff/receipt @ rev 18939
Add libwnck3, libwnck3-dev; fix libwnck-dev
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Mar 01 17:34:09 2016 +0200 (2016-03-01) |
parents | 76aaa18ade61 |
children | 9ed08571171f |
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 }