mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
35 lines
846 B
Bash
35 lines
846 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
|
|
pkgname=gobject-introspection
|
|
pkgver=1.34.2
|
|
pkgrel=1
|
|
pkgdesc="Introspection system for GObject-based libraries"
|
|
url="https://live.gnome.org/GObjectInstrospection"
|
|
arch=('x86_64')
|
|
license=('LGPL' 'GPL')
|
|
depends=('libffi' 'glib2' 'python2')
|
|
makedepends=('cairo')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.34/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('9dc9822eb2912e9b73e51ae67fe86145')
|
|
|
|
|
|
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
|
|
}
|
|
|