blob: 3b9780deb8c48b784789129ff17d8c305792980c (
plain)
1 # Description: A library that encapsulates the logic for complex text layout
2 # URL: https://github.com/HOST-Oman/libraqm/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: fribidi harfbuzz
5
6 name=libraqm
7 version=0.7.1
8 release=1
9 source=(https://github.com/HOST-Oman/libraqm/releases/download/v$version/raqm-$version.tar.gz)
10
11 build() {
12 cd raqm-$version
13
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17
18 rm -r $PKG/usr/share/gtk-doc
19 }
|