first commit
This commit is contained in:
3
src/asciidoc/.gitignore
vendored
Normal file
3
src/asciidoc/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/asciidoc/changes.md
Normal file
2
src/asciidoc/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 10.2.0
|
||||
First version
|
16
src/asciidoc/pkg.sh
Normal file
16
src/asciidoc/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="asciidoc"
|
||||
DESC="Text document format for writing notes, documentation, articles, books, ebooks, slideshows, web pages, man pages and blogs"
|
||||
VERSION="10.2.0"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-$VERSION.tar.gz")
|
||||
HASHES=("ecac3af818f7a65596efc6e243b520a0")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
python3 setup.py build
|
||||
python3 setup.py install --optimize=1 --root=$ROOTDIR
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user