contrib/mm-common/Pkgfile

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 08:30:30 +02:00
# Depends on: meson ninja
name=mm-common
2021-06-27 21:07:43 +02:00
version=1.0.3
2018-06-25 14:52:25 +02:00
release=1
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
2020-11-07 17:48:51 +01:00
meson setup $name-$version build \
--prefix=/usr \
2021-01-23 19:17:56 +01:00
--buildtype=plain
2020-11-07 17:48:51 +01:00
meson compile -C build -j ${JOBS-1}
2020-06-06 08:30:30 +02:00
DESTDIR=$PKG meson install -C build
2017-02-12 00:52:08 +01:00
rm -r $PKG/usr/share/doc
}