PKGBUILDs/extra/libsigc++2.0/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
697 B
Bash

# $Id: PKGBUILD 15586 2008-10-15 21:29:06Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=libsigc++2.0
pkgver=2.2.3
pkgrel=1
pkgdesc="Libsigc++ implements a full callback system for use in widget libraries - V2"
arch=(i686 x86_64)
license=('LGPL')
url="http://libsigc.sourceforge.net/"
source=(http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/libsigc++-${pkgver}.tar.bz2)
depends=('gcc-libs>=4.3.2')
options=(!libtool !emptydirs)
md5sums=('f4574b343eebc4bff66a9e1e5ce6e490')
build() {
cd "${srcdir}/libsigc++-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}