summaryrefslogtreecommitdiff
path: root/asciidoc/Pkgfile
blob: ab3dc1525c93501b3eb31463ba84dca7f67023d5 (plain)
    1 # Description: Text based document generation.
    2 # URL: https://www.methods.co.nz/asciidoc/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Depends on: docbook-xsl python3
    5 
    6 name=asciidoc
    7 version=9.0.5
    8 release=1
    9 source=(https://github.com/asciidoc/$name-py3/archive/$version/$name-py3-$version.tar.gz)
   10 
   11 build() {
   12 	cd $name-py3-$version
   13 	PYTHON='/usr/bin/python3'
   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 }

Generated by cgit