mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:37:36 +08:00
23 lines
732 B
Bash
23 lines
732 B
Bash
# $Id: PKGBUILD 73893 2010-03-29 09:23:28Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=libsigc++2.0
|
|
pkgver=2.2.5
|
|
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.4.1')
|
|
options=(!libtool !emptydirs)
|
|
sha256sums=('1249e77ef9556227c10d0dad726f0946fecc3b36e448ae72368ef8f3d3b520ba')
|
|
|
|
build() {
|
|
cd "${srcdir}/libsigc++-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|