Files
extra/pangomm/PKGBUILD
2025-06-22 20:39:04 -05:00

25 lines
817 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=pangomm
pkgver=2.46.1
pkgrel=3
pkgdesc="C++ bindings for Pango"
url='https://www.gtkmm.org/'
arch=('i686' 'x86_64')
license=('LGPL-2.1' 'GPL-2')
depends=('pango' 'glibmm' 'cairomm' 'libsigc++')
makedepends=('meson' 'mm-common' 'glibmm' 'cairomm')
options=(!emptydirs)
source=("https://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz")
sha512sums=('cb375af9422d8fa7683fcdd4dc9b9179b48dcfd2278a587fcfc86a04c5c0bbd5feb348a2b45c7bf233a3ad68a9614c66c8300fd4d287b5e144d336441f5aa46a')
build() {
hyperbola-meson $pkgname-$pkgver build -D maintainer-mode=true
meson compile -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
install -Dm644 $srcdir/$pkgname-$pkgver/COPYING -t $pkgdir/usr/share/licenses/$pkgname
}