mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
60fa35ae28
* fix bzr * update udev to 165 * update gobject-introspection to 0.10.0
26 lines
851 B
Bash
26 lines
851 B
Bash
#
|
|
# 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>
|
|
|
|
pkgname=gobject-introspection
|
|
pkgver=0.10.0
|
|
pkgrel=1
|
|
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.23.5' 'python')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.10/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('8af5a4ff16df4b7f08db2eabc09396e15a19dde85a7d288fa26b9cdca280b9fa')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static --disable-tests || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|
|
|