Added epoxy
This commit is contained in:
parent
dec8a193c3
commit
4875f10fa5
1 changed files with 31 additions and 0 deletions
31
pkgs/libepoxy/build.sh
Normal file
31
pkgs/libepoxy/build.sh
Normal 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
|
||||||
|
}
|
Loading…
Reference in a new issue