initial import
This commit is contained in:
34
libraqm/PKGBUILD
Normal file
34
libraqm/PKGBUILD
Normal file
@@ -0,0 +1,34 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=libraqm
|
||||
pkgver=0.7.0
|
||||
_debver=0.7.0
|
||||
_debrel=4
|
||||
pkgrel=1
|
||||
pkgdesc='A library that encapsulates the logic for complex text layout'
|
||||
arch=('i686' 'x86_64')
|
||||
url='https://github.com/HOST-Oman/libraqm/'
|
||||
license=('Expat')
|
||||
depends=('freetype2' 'fribidi' 'harfbuzz')
|
||||
source=(https://github.com/HOST-Oman/libraqm/releases/download/v$pkgver/raqm-$pkgver.tar.gz)
|
||||
sha512sums=('4aed401df0b53cc95423afa5980164b54102776eca675119fc483c410334a635ca95ef6564ee9b54666c13c916eb52a0a1cd24f288230946c53825fb10451161')
|
||||
|
||||
build() {
|
||||
cd raqm-$pkgver
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-static=no \
|
||||
--enable-shared=yes \
|
||||
--enable-fast-install=yes \
|
||||
--enable-gtk-doc=no
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd raqm-$pkgver
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
rm -rf "$pkgdir"/usr/share/gtk-doc
|
||||
install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
|
||||
}
|
||||
Reference in New Issue
Block a user