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

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

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

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

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

@ -0,0 +1,19 @@
NAME="libglvnd"
DESC="The GL Vendor-Neutral Dispatch library"
VERSION="1.7.0"
FILES=("https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$VERSION/libglvnd-v$VERSION.tar.gz")
HASHES=("7b6eb8e075b48f1d915b892044adc3260547d74ed61d1e2fa6c5f0f8c3527754abea314181e088626d4fd58bb221085e5288c4758d828e171c7dcb0e4991745c")
DEPENDS=("libxext" "mesa")
PACKAGE() {
tar xf $NAME-v$VERSION.tar.gz
cd $NAME-v$VERSION
mkdir build
cd build
meson .. -D gles1=false
meson compile && meson install --destdir "$ROOTDIR"
cd ../.. && rm -r $NAME-v$VERSION
}