mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 16:07:20 +08:00
32 lines
695 B
Bash
32 lines
695 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=python2-gobject3
|
|
pkgbase=pygobject
|
|
pkgver=3.2.1
|
|
pkgrel=2
|
|
pkgdesc="Python2 bindings for GObject, including all introspection files"
|
|
arch=('x86_64')
|
|
url="https://live.gnome.org/PyGObject"
|
|
license=('LGPL')
|
|
depends=('python2' 'python2-cairo' 'gobject-introspection')
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/pygobject-$pkgver.tar.xz")
|
|
options=('!libtool')
|
|
md5sums=('3f6e63de5aa422710c268b249e2244bf')
|
|
|
|
build() {
|
|
cd "$pkgbase-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgbase-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|