first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/asciidoc/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/asciidoc/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 10.2.0
First version

16
src/asciidoc/pkg.sh Normal file
View 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
}