wok-6.x view asciidoc/receipt @ rev 19267
Compress manpages.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Jul 04 11:45:47 2016 +0300 (2016-07-04) |
parents | 45e18b828d5e |
children | 11b5e93cb5f2 |
line source
1 # SliTaz package receipt.
3 PACKAGE="asciidoc"
4 VERSION="8.6.9"
5 CATEGORY="system-tools"
6 SHORT_DESC="Text based document generation"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-${VERSION}.tar.gz"
10 WEB_SITE="http://www.methods.co.nz/asciidoc/"
11 WGET_URL="$SF_MIRROR/project/asciidoc/asciidoc/$VERSION/$TARBALL"
13 DEPENDS="python"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make install
24 cook_compress_manpages
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/etc $fs
32 cp -a $install/usr/bin $fs/usr
33 }