blob: 4214fb50a9e7af46e90f7c0b9f48940131358aa0 (
plain)
1 # Description: Text based document generation.
2 # URL: http://www.methods.co.nz/asciidoc/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: docbook-xsl python
5
6 name=asciidoc
7 version=8.6.10
8 release=1
9 source=(https://github.com/$name/$name/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoconf
15 ./configure \
16 --prefix=/usr \
17 --sysconfdir=/usr/etc
18
19 make
20 make DESTDIR=$PKG install
21 rm $PKG/usr/etc/asciidoc/images/icons/README
22 }
|