2011-01-04 02:35:27 +08:00
|
|
|
#
|
|
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-05-19 00:09:58 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-08-05 09:30:44 +08:00
|
|
|
|
2012-02-26 12:09:49 +08:00
|
|
|
|
2010-03-22 01:35:58 +08:00
|
|
|
pkgname=gobject-introspection
|
2013-02-27 08:08:40 +08:00
|
|
|
pkgver=1.34.2
|
2011-01-04 02:35:27 +08:00
|
|
|
pkgrel=1
|
2010-03-22 01:35:58 +08:00
|
|
|
pkgdesc="Introspection system for GObject-based libraries"
|
2013-02-27 08:08:40 +08:00
|
|
|
url="https://live.gnome.org/GObjectInstrospection"
|
|
|
|
arch=('x86_64')
|
2010-03-22 01:35:58 +08:00
|
|
|
license=('LGPL' 'GPL')
|
2011-07-22 00:24:09 +08:00
|
|
|
depends=('libffi' 'glib2' 'python2')
|
|
|
|
makedepends=('cairo')
|
2010-03-22 01:35:58 +08:00
|
|
|
options=('!libtool')
|
2013-02-27 08:08:40 +08:00
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.34/${pkgname}-${pkgver}.tar.xz)
|
|
|
|
md5sums=('9dc9822eb2912e9b73e51ae67fe86145')
|
2012-02-26 12:09:49 +08:00
|
|
|
|
2010-03-22 01:35:58 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2011-07-22 00:24:09 +08:00
|
|
|
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
|
|
|
sed -i '1s|#!/usr/bin/env python$|&2|' \
|
|
|
|
"${pkgdir}"/usr/lib/gobject-introspection/giscanner/*.py
|
2010-03-22 01:35:58 +08:00
|
|
|
}
|
2010-08-05 09:30:44 +08:00
|
|
|
|