contrib/libsigc++/Pkgfile

22 lines
454 B
Plaintext
Raw Normal View History

2007-06-03 14:41:16 +02:00
# Description: A callback framework for C++.
2008-03-01 16:36:22 +01:00
# URL: http://libsigc.sourceforge.net/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: mm-common
2007-06-03 14:41:16 +02:00
name=libsigc++
2019-11-12 12:32:03 +01:00
version=2.10.2
2007-06-03 14:41:16 +02:00
release=1
2015-11-06 05:31:39 +01:00
source=(https://download.gnome.org/sources/libsigc++/${version%.*}/$name-$version.tar.xz)
2007-06-03 14:41:16 +02:00
build() {
cd libsigc++-$version
2016-05-18 14:20:23 +02:00
NOCONFIGURE=1 ./autogen.sh
2007-06-03 14:41:16 +02:00
./configure --prefix=/usr
2016-05-18 14:20:23 +02:00
2007-06-03 14:41:16 +02:00
make
make install DESTDIR=$PKG
2016-05-18 14:20:23 +02:00
rm -r $PKG/usr/share/{doc,devhelp}
2007-06-03 14:41:16 +02:00
}