diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2020-01-27 17:36:00 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2020-01-27 17:36:00 +1100 |
commit | 52d2645e136d53e7afdca8544d7131d530505b0a (patch) | |
tree | 32a11676ba27df55a19e76aabf5bf1de054adaa5 /libraqm | |
parent | 4a4117a3044047cd8f7e99d427d91e606276c805 (diff) | |
download | contrib-52d2645e136d53e7afdca8544d7131d530505b0a.tar.gz contrib-52d2645e136d53e7afdca8544d7131d530505b0a.tar.xz |
libraqm: initial import
Diffstat (limited to 'libraqm')
-rw-r--r-- | libraqm/.footprint | 13 | ||||
-rw-r--r-- | libraqm/.signature | 5 | ||||
-rw-r--r-- | libraqm/Pkgfile | 19 |
3 files changed, 37 insertions, 0 deletions
diff --git a/libraqm/.footprint b/libraqm/.footprint new file mode 100644 index 000000000..f8b6ca61a --- /dev/null +++ b/libraqm/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/raqm-version.h +-rw-r--r-- root/root usr/include/raqm.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libraqm.a +-rwxr-xr-x root/root usr/lib/libraqm.la +lrwxrwxrwx root/root usr/lib/libraqm.so -> libraqm.so.0.700.0 +lrwxrwxrwx root/root usr/lib/libraqm.so.0 -> libraqm.so.0.700.0 +-rwxr-xr-x root/root usr/lib/libraqm.so.0.700.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/raqm.pc +drwxr-xr-x root/root usr/share/ diff --git a/libraqm/.signature b/libraqm/.signature new file mode 100644 index 000000000..bf4681bd0 --- /dev/null +++ b/libraqm/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3zetW7vsVx+epNwi/8bd1IeM5sXBpPv8IGc08CWeemN7UExBvJ0L0eUy848nq0Y6UejOKIsDPg2UQyIOdcFyBgI= +SHA256 (Pkgfile) = c2c271fdfca0f6db72193e647198947c93344eb267d8c0096632f1d43952964a +SHA256 (.footprint) = 60d44f86e797c049f0b262180055966f5a49b6548cad994932b986ac98f640a6 +SHA256 (raqm-0.7.0.tar.gz) = e28575ecdd4e8a1d277d9be8268bb663ce1e476aaf55eb0456787821ddf0f941 diff --git a/libraqm/Pkgfile b/libraqm/Pkgfile new file mode 100644 index 000000000..37b29afcb --- /dev/null +++ b/libraqm/Pkgfile @@ -0,0 +1,19 @@ +# 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 +source=(https://github.com/HOST-Oman/libraqm/releases/download/v$version/raqm-$version.tar.gz) + +build() { + cd raqm-$version + + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/gtk-doc +} |