summaryrefslogtreecommitdiff
path: root/asciidoc/Pkgfile
blob: c1924380cae482a4aac1c7e982d672d854415fe3 (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-build python3-installer
    5 
    6 name=asciidoc
    7 version=10.2.0
    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 }

Generated by cgit