core/gobject-introspection/PKGBUILD

35 lines
846 B
Bash
Raw Normal View History

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
2012-02-26 12:09:49 +08:00
2010-03-22 01:35:58 +08:00
pkgname=gobject-introspection
pkgver=1.34.2
pkgrel=1
2010-03-22 01:35:58 +08:00
pkgdesc="Introspection system for GObject-based libraries"
url="https://live.gnome.org/GObjectInstrospection"
arch=('x86_64')
2010-03-22 01:35:58 +08:00
license=('LGPL' 'GPL')
depends=('libffi' 'glib2' 'python2')
makedepends=('cairo')
2010-03-22 01:35:58 +08:00
options=('!libtool')
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}"
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
}