contrib/libraqm/Pkgfile

21 lines
468 B
Plaintext
Raw Normal View History

2020-01-27 07:36:00 +01:00
# Description: A library that encapsulates the logic for complex text layout
# URL: https://github.com/HOST-Oman/libraqm/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: fribidi harfbuzz
name=libraqm
version=0.7.0
release=1
2020-01-30 10:08:32 +01:00
source=(https://github.com/HOST-Oman/libraqm/archive/v$version/$name-$version.tar.gz)
2020-01-27 07:36:00 +01:00
build() {
2020-01-30 10:08:32 +01:00
cd $name-$version
2020-01-27 07:36:00 +01:00
2020-01-30 10:08:32 +01:00
./autogen.sh
2020-01-27 07:36:00 +01:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2020-01-30 10:08:32 +01:00
rm -rf $PKG/usr/share/gtk-doc
2020-01-27 07:36:00 +01:00
}