Added cairo (glib disabled for now)

This commit is contained in:
Ella-0 2021-02-23 16:17:40 +00:00
parent a16ad10c47
commit f772cfd434

30
pkgs/cairo/build.sh Normal file
View file

@ -0,0 +1,30 @@
pkgname=cairo
pkgver=master
fetch() {
curl "https://gitlab.freedesktop.org/cairo/cairo/-/archive/master/cairo-master.tar.gz" -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 \
-Dglib=disabled
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat COPYING*
}