1
0
forked from ports/contrib

20 lines
473 B
Plaintext
Raw Normal View History

# Description: Common build files of the C++ bindings.
# URL: https://gtkmm.org/
# Maintainer: Danny Rawlins, crux at romster dot me
2020-06-06 16:30:30 +10:00
# Depends on: meson ninja
name=mm-common
2020-09-29 22:31:57 +10:00
version=1.0.2
2018-06-25 22:52:25 +10:00
release=1
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
2020-11-07 16:48:51 +00:00
meson setup $name-$version build \
--prefix=/usr \
2021-01-23 18:17:56 +00:00
--buildtype=plain
2020-11-07 16:48:51 +00:00
meson compile -C build -j ${JOBS-1}
2020-06-06 16:30:30 +10:00
DESTDIR=$PKG meson install -C build
2017-02-12 10:52:08 +11:00
rm -r $PKG/usr/share/doc
}