contrib/mm-common/Pkgfile

22 lines
512 B
Plaintext
Raw Normal View History

# Description: Common build files of the C++ bindings.
# URL: https://gtkmm.org/
2023-03-06 05:19:11 +01:00
# Maintainer: John McQuah, jmcquah at disroot dot org
name=mm-common
2022-12-03 21:40:11 +01:00
version=1.0.5
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 \
2022-02-18 14:25:38 +01:00
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
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
}