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/gtk-doc/.gitignore vendored Normal file
View File

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

2
src/gtk-doc/changes.md Normal file
View File

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

20
src/gtk-doc/pkg.sh Normal file
View File

@ -0,0 +1,20 @@
NAME="gtk-doc"
DESC="Code documenter"
VERSION="1.33.2"
FILES=("https://download.gnome.org/sources/gtk-doc/${VERSION%.*}/gtk-doc-$VERSION.tar.xz")
HASHES=("ea6563421abe964d02135ca0d5b8dd8e")
DEPENDS=(
"docbook-xml" "docbook-xsl-nons" "itstool"
"libxslt" "pygments"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
autoreconf -fiv
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}