blob: fe298011f0241bbc29f92ee5c0e7f75c765b93c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Format de document texte pour de petits documents, articles, books et UNIX man page
# URL: http://www.methods.co.nz/asciidoc/
# Maintainer: NuTyX core team
# Packager: fanch
# Depends on:
# Run on: libxslt,docbook-xsl
name=asciidoc
version=8.5.3
release=1
source=(http://downloads.sourceforge.net/asciidoc/$name-$version.tar.gz)
build() {
cd $SRC/$name-$version
PYTHON=python2 ./configure --prefix=/usr --sysconfdir=/etc
make install DESTDIR="$PKG"
install -Dm644 asciidocapi.py $PKG/usr/lib/python2.7/site-packages/asciidocapi.py
}
|