1
0
forked from ports/contrib

19 lines
461 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/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gtk libsigc++2
2007-05-13 20:37:12 +10:00
name=glibmm
2021-01-09 18:03:51 +11:00
version=2.64.5
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 \
--buildtype=plain
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
2007-05-13 20:37:12 +10:00
}