mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
21 lines
723 B
Bash
21 lines
723 B
Bash
# $Id: PKGBUILD 61463 2009-12-16 16:39:38Z ibiru $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=gobject-introspection
|
|
pkgver=0.6.6
|
|
pkgrel=2
|
|
pkgdesc="Introspection system for GObject-based libraries"
|
|
url="http://live.gnome.org/GObjectInstrospection"
|
|
arch=('x86_64' 'i686')
|
|
license=('LGPL' 'GPL')
|
|
depends=('libffi>=3.0.8' 'glib2>=2.22.0' 'python')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('3843b349d37b8195cc32ac10521fb1558a3610dce30d190437d6a48404b2e2c0')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|