contrib/gtkmm4/Pkgfile

24 lines
601 B
Plaintext

# Description: C++ Interfaces for GTK4 and GNOME
# URL: https://www.gtkmm.org/en/index.html
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gtk4 pangomm-2.48
name=gtkmm4
version=4.14.0
release=1
source=(https://download.gnome.org/sources/gtkmm/${version%.*}/gtkmm-$version.tar.xz)
build() {
meson setup gtkmm-$version build \
--prefix=/usr \
--sysconfdir=/etc \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D build-demos=false \
-D build-tests=false
meson compile -C build
DESTDIR=$PKG meson install -C build
}