2010-05-17 08:20:57 +08:00
|
|
|
# $Id: PKGBUILD 72907 2010-03-21 15:29:35Z ibiru $
|
2010-03-22 01:35:58 +08:00
|
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
2010-05-17 08:20:57 +08:00
|
|
|
|
|
|
|
# NOTE 0.6.10 and up need cairo
|
|
|
|
|
2010-03-22 01:35:58 +08:00
|
|
|
pkgname=gobject-introspection
|
2010-05-17 08:20:57 +08:00
|
|
|
pkgver=0.6.9
|
2010-04-04 22:20:41 +08:00
|
|
|
pkgrel=1
|
2010-03-22 01:35:58 +08:00
|
|
|
pkgdesc="Introspection system for GObject-based libraries"
|
|
|
|
url="http://live.gnome.org/GObjectInstrospection"
|
|
|
|
arch=('x86_64' 'i686')
|
|
|
|
license=('LGPL' 'GPL')
|
2010-05-17 08:20:57 +08:00
|
|
|
depends=('libffi>=3.0.8' 'glib2>=2.23.5' 'python')
|
2010-03-22 01:35:58 +08:00
|
|
|
options=('!libtool')
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2)
|
2010-05-17 08:20:57 +08:00
|
|
|
sha256sums=('12ea075fdb90780b047382bc7acf4896c34dad49276f6c8513045a3f584d5ac6')
|
2010-03-22 01:35:58 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
|
|
}
|
2010-05-17 08:20:57 +08:00
|
|
|
|