Added epoxy

This commit is contained in:
Ella-0 2021-07-29 15:05:37 +00:00
parent dec8a193c3
commit 4875f10fa5

31
pkgs/libepoxy/build.sh Normal file
View file

@ -0,0 +1,31 @@
pkgname=libepoxy
pkgver=1.5.8
fetch() {
curl -L "https://github.com/anholt/libepoxy/releases/download/$pkgver/libepoxy-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib \
-Dglx=no \
-Dx11=false
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat COPYING
}