first commit
This commit is contained in:
3
src/libxmlb/.gitignore
vendored
Normal file
3
src/libxmlb/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libxmlb/changes.md
Normal file
2
src/libxmlb/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.3.15
|
||||
First version
|
19
src/libxmlb/pkg.sh
Normal file
19
src/libxmlb/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user