blob: e205dc3cda64bf515848571ff0c9fd41a249f5a6 (
plain)
1 # Description: Common build files of the C++ bindings.
2 # URL: https://gtkmm.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: meson ninja
5
6 name=mm-common
7 version=1.0.3
8 release=1
9 source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain
15 meson compile -C build -j ${JOBS-1}
16 DESTDIR=$PKG meson install -C build
17
18 rm -r $PKG/usr/share/doc
19 }
|