added harfbuzz
This commit is contained in:
parent
25e86ce9d6
commit
0b3fbb4c35
1 changed files with 32 additions and 0 deletions
32
pkgs/harfbuzz/build.sh
Normal file
32
pkgs/harfbuzz/build.sh
Normal 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
|
||||||
|
}
|
Loading…
Reference in a new issue