forked from ports/contrib
20 lines
465 B
Plaintext
20 lines
465 B
Plaintext
# Description: A callback framework for C++.
|
|
# URL: https://libsigcplusplus.github.io/libsigcplusplus/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: mm-common
|
|
|
|
name=libsigc++2
|
|
version=2.10.7
|
|
release=1
|
|
source=(https://download.gnome.org/sources/libsigc++/${version%.*}/libsigc++-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libsigc++-$version
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr --disable-documentation
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|