20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
# Description: Common build files of the C++ bindings.
|
|
# URL: https://gtkmm.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: meson ninja
|
|
|
|
name=mm-common
|
|
version=1.0.2
|
|
release=1
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup $name-$version build \
|
|
--prefix=/usr \
|
|
--buildtype=plain
|
|
meson compile -C build -j ${JOBS-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|