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

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

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

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

22
src/glib/pkg.sh Normal file
View File

@@ -0,0 +1,22 @@
NAME="glib"
DESC="Low-level libraries useful for providing data structure handling for C"
VERSION="2.78.4"
FILES=("https://download.gnome.org/sources/glib/2.78/glib-$VERSION.tar.xz")
HASHES=("0781e889cab64f1f7dbb6e8357c6a95f")
DEPENDS=("libxslt" "pcre2")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mkdir build
cd build
meson setup .. \
--prefix=/usr \
--buildtype=release \
-Dman=false
ninja && DESTDIR=${ROOTDIR} ninja install
cd ../.. && rm -rf $NAME-$VERSION
}