summaryrefslogtreecommitdiff
path: root/mm-common/Pkgfile
blob: da0292e7070b3dbce77030b1e306eb4704fcea2a (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.4
    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 		--wrap-mode nodownload \
   16 		-D b_lto=true \
   17 		-D b_pie=true
   18 	meson compile -C build -j ${JOBS-1}
   19 	DESTDIR=$PKG meson install -C build
   20 
   21 	rm -r $PKG/usr/share/doc
   22 }

Generated by cgit