24 lines
436 B
Plaintext
24 lines
436 B
Plaintext
# Description: Common build files of the C++ bindings.
|
|
# URL: https://gtkmm.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
name=mm-common
|
|
version=0.9.10
|
|
release=2
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-network
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|