mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
701 B
Bash
22 lines
701 B
Bash
# $Id: PKGBUILD 31955 2009-03-29 10:51:27Z jgc $
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gtkmm
|
|
pkgver=2.16.0
|
|
pkgrel=1
|
|
pkgdesc="Gtk-- (gtkmm) is a C++ interface for the popular GUI library gtk+"
|
|
arch=(i686 x86_64)
|
|
depends=('gtk2>=2.16.0' 'pangomm>=2.24.0')
|
|
license=('LGPL')
|
|
options=('!libtool' '!emptydirs')
|
|
url="http://gtkmm.sourceforge.net/"
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.16/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('a82e3b5b93008421ff67df16d1e51ec2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|