wok-next view asciidoc/receipt @ rev 19662

Remove tazchroot (not used for yearsand unusable)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 16 18:37:27 2017 +0100 (2017-03-16)
parents 11b5e93cb5f2
children f463de72afe3
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 WEB_SITE="http://www.methods.co.nz/asciidoc/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/asciidoc/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --docdir=/usr/share/doc/asciidoc-$VERSION \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install &&
26 make DESTDIR=$install docs
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cook_copy_folders etc bin
33 }