* update libraqm to 0.10.1-2

This commit is contained in:
Alexander Baldeck 2024-07-25 21:39:03 +02:00
parent 436fa4a210
commit f8a7302e04
3 changed files with 35 additions and 8 deletions

18
libraqm/.SRCINFO Normal file
View File

@ -0,0 +1,18 @@
pkgbase = libraqm
pkgdesc = A library that encapsulates the logic for complex text layout
pkgver = 0.10.1
pkgrel = 2
url = https://github.com/HOST-Oman/libraqm/
arch = x86_64
license = MIT
makedepends = git
makedepends = gtk-doc
makedepends = meson
depends = freetype2
depends = fribidi
depends = glibc
depends = harfbuzz
source = git+https://github.com/HOST-Oman/libraqm#tag=v0.10.1
sha256sums = 3ffc828da549a7f77216236c6d9bfdb9c21cbd151adbf5dac54fa8480d9f7b03
pkgname = libraqm

5
libraqm/.nvchecker.toml Normal file
View File

@ -0,0 +1,5 @@
[libraqm]
source = 'github'
github = 'HOST-Oman/libraqm'
use_max_tag = true
prefix = 'v'

View File

@ -1,21 +1,25 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer:
# Contributor: Daniel Bermond < yahoo-com: danielbermond >
pkgname=libraqm
pkgver=0.10.1
pkgrel=1
pkgrel=2
pkgdesc='A library that encapsulates the logic for complex text layout'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://github.com/HOST-Oman/libraqm/'
license=(MIT)
depends=(freetype2 fribidi)
makedepends=(meson gtk-doc)
source=(https://github.com/HOST-Oman/libraqm/releases/download/v$pkgver/raqm-$pkgver.tar.xz)
sha256sums=('4d76a358358d67c5945684f2f10b3b08fb80e924371bf3ebf8b15cd2e321d05d')
depends=(freetype2
fribidi
glibc
harfbuzz)
makedepends=(git
gtk-doc
meson)
source=(git+https://github.com/HOST-Oman/libraqm#tag=v$pkgver)
sha256sums=('3ffc828da549a7f77216236c6d9bfdb9c21cbd151adbf5dac54fa8480d9f7b03')
build() {
meson build raqm-$pkgver \
meson build libraqm \
--prefix=/usr \
-D docs=true
meson compile -C build
@ -24,5 +28,5 @@ build() {
package() {
meson install -C build --destdir "$pkgdir"
install -D -m644 raqm-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -D -m644 libraqm/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}