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

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

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

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

19
src/libxmlb/pkg.sh Normal file
View File

@ -0,0 +1,19 @@
NAME="libxmlb"
DESC="Library to help create and query binary XML blobs"
VERSION="0.3.15"
FILES=("https://github.com/hughsie/libxmlb/releases/download/$VERSION/libxmlb-$VERSION.tar.xz")
HASHES=("4cf605965d0e669db737da6443314664ea471807f2719a84550f2490670beea9")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mkdir build
cd build
meson --prefix=/usr .. && ninja
meson install --destdir "$ROOTDIR"
cd ../.. && rm -r $NAME-$VERSION
}