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