added harfbuzz

This commit is contained in:
Ella-0 2021-05-21 10:46:37 +01:00
parent 25e86ce9d6
commit 0b3fbb4c35
1 changed files with 32 additions and 0 deletions

32
pkgs/harfbuzz/build.sh Normal file
View File

@ -0,0 +1,32 @@
pkgname=harfbuzz
pkgver=2.7.4
fetch() {
curl -L "https://github.com/harfbuzz/harfbuzz/releases/download/2.7.4/harfbuzz-2.7.4.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 \
-Dglib=disabled \
-Dgobject=disabled \
-Dicu=enabled
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat COPYING
}