initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

24
pangomm/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# 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
}