first commit
This commit is contained in:
3
src/libepoxy/.gitignore
vendored
Normal file
3
src/libepoxy/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libepoxy/changes.md
Normal file
2
src/libepoxy/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 1.5.10
|
||||
First version
|
19
src/libepoxy/pkg.sh
Normal file
19
src/libepoxy/pkg.sh
Normal file
@@ -0,0 +1,19 @@
|
||||
NAME="libepoxy"
|
||||
DESC="OpenGL function pointer management libary"
|
||||
VERSION="1.5.10"
|
||||
FILES=("https://download.gnome.org/sources/libepoxy/1.5/libepoxy-$VERSION.tar.xz")
|
||||
HASHES=("10c635557904aed5239a4885a7c4efb7")
|
||||
DEPENDS=("libx11")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && DESTDIR=${ROOTDIR} ninja install
|
||||
|
||||
cd ../.. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user