wok-6.x diff groff/receipt @ rev 10791
slitaz-tools: tazx is not installed by Makefile (fixed in tools repo)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Jun 02 02:39:30 2011 +0200 (2011-06-02) |
parents | 430b278c204b |
children | 76aaa18ade61 |
line diff
1.1 --- a/groff/receipt Fri Apr 16 16:05:19 2010 +0000 1.2 +++ b/groff/receipt Thu Jun 02 02:39:30 2011 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="groff" 1.7 -VERSION="1.20.1" 1.8 +VERSION="1.21" 1.9 CATEGORY="utilities" 1.10 SHORT_DESC="The GNU troff text-formatting system." 1.11 MAINTAINER="rocky@slitaz.org" 1.12 @@ -15,21 +15,18 @@ 1.13 { 1.14 cd $src 1.15 touch doc/gnu.eps 1.16 - ./configure --prefix=/usr \ 1.17 - --mandir=/usr/man \ 1.18 + ./configure \ 1.19 --without-x \ 1.20 $CONFIGURE_ARGS && 1.21 make && 1.22 - make DESTDIR=$PWD/_pkg install 1.23 + make install 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 - mkdir -p $fs/usr 1.30 + mkdir -p $fs/usr/share 1.31 cp -a $_pkg/usr/bin $fs/usr 1.32 cp -a $_pkg/usr/lib $fs/usr 1.33 - cp -a $_pkg/usr/share $fs/usr 1.34 - rm -rf $fs/usr/share/info 1.35 - rm -rf $fs/usr/share/doc 1.36 + cp -a $_pkg/usr/share/groff $fs/usr 1.37 }