mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 06:47:14 +08:00
36 lines
990 B
Bash
36 lines
990 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=1.30.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' 'glib2' 'python2')
|
|
makedepends=('cairo')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.30/${pkgname}-${pkgver}.tar.xz)
|
|
sha256sums=('8e4274579096e983fad3148cdab50295a4701e45cd9a4e02f7242fc0a04c47b2')
|
|
|
|
|
|
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
|
|
}
|
|
|