2011-01-04 02:35:27 +08:00
|
|
|
#
|
|
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
2010-08-05 09:30:44 +08:00
|
|
|
|
2010-03-22 01:35:58 +08:00
|
|
|
pkgname=gobject-introspection
|
2011-01-04 02:35:27 +08:00
|
|
|
pkgver=0.10.0
|
|
|
|
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')
|
2011-01-04 02:35:27 +08:00
|
|
|
depends=('libffi>=3.0.8' 'glib2>=2.23.5' 'python')
|
2010-03-22 01:35:58 +08:00
|
|
|
options=('!libtool')
|
2011-01-04 02:35:27 +08:00
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.10/${pkgname}-${pkgver}.tar.bz2)
|
|
|
|
sha256sums=('8af5a4ff16df4b7f08db2eabc09396e15a19dde85a7d288fa26b9cdca280b9fa')
|
2010-03-22 01:35:58 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2010-08-05 09:50:01 +08:00
|
|
|
./configure --prefix=/usr --disable-static --disable-tests || return 1
|
2010-03-22 01:35:58 +08:00
|
|
|
make || return 1
|
|
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
|
|
}
|
2010-08-05 09:30:44 +08:00
|
|
|
|