1
0
forked from ports/contrib
contrib/glibmm/Pkgfile

24 lines
590 B
Plaintext
Raw Normal View History

2007-05-13 20:37:12 +10:00
# Description: C++ interface for the popular glib library.
2017-02-11 12:29:00 +11:00
# URL: https://www.gtkmm.org/
2023-03-05 23:19:11 -05:00
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-11-13 18:16:18 +00:00
# Depends on: glib libsigc++2
2007-05-13 20:37:12 +10:00
name=glibmm
2023-07-09 08:00:52 -04:00
version=2.66.6
2007-05-13 20:37:12 +10:00
release=1
2017-02-11 12:29:00 +11:00
source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
2007-05-13 20:37:12 +10:00
build() {
2020-11-23 23:55:06 +11:00
meson setup build $name-$version \
--prefix=/usr \
2022-11-13 18:16:18 +00:00
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
2007-05-13 20:37:12 +10:00
2020-11-23 23:55:06 +11:00
meson compile -C build -j ${JOBS-1}
DESTDIR=$PKG meson install -C build
2023-03-05 23:19:11 -05:00
find $PKG \( -type f -a -perm -g+w \) -exec chmod g-w '{}' +
2007-05-13 20:37:12 +10:00
}