mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 16:57:46 +08:00
22 lines
598 B
Bash
22 lines
598 B
Bash
# $Id: PKGBUILD 66479 2010-01-31 10:33:16Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=pycairo
|
|
pkgver=1.8.8
|
|
pkgrel=1
|
|
pkgdesc="Python bindings for the cairo graphics library"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL' 'MPL')
|
|
depends=('python' 'cairo>=1.8.8')
|
|
options=('!libtool')
|
|
source=(http://cairographics.org/releases/${pkgname}-${pkgver}.tar.gz)
|
|
url="http://www.cairographics.org/"
|
|
md5sums=('054da6c125cb427a003f5fd6c54f853e')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|