wok-next view asciidoc/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 7b8e000b629f
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="asciidoc"
4 VERSION="8.6.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="Text based document generation"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://asciidoc.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/asciidoc.html"
11 HOST_ARCH="any"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="https://github.com/asciidoc/asciidoc/archive/$VERSION.tar.gz"
15 TARBALL_SHA1="53b9c916bb4e29d2a4b850446be070ef81dcd792"
17 BUILD_DEPENDS="automake python libxml2-tools docbook-xml docbook-xsl"
18 DEPENDS_std="python"
20 compile_rules() {
21 autoconf &&
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install &&
25 make DESTDIR=$install docs || return 1
27 # remove broken symlink
28 rm $install/usr/share/doc/asciidoc-8.6.10/examples/website/asciidoc-graphviz-sample.txt
29 }