blob: 0474a6ea43bf8ea82f28e92815a0161ab207ede2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Connecteur Python2 pour la librairie cairo
# URL: http://www.cairographics.org/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: python2 cairo
name=py2cairo
version=1.8.10
release=1
source=(http://cairographics.org/releases/$name-$version.tar.gz)
build() {
cd pycairo-$version
PYTHON=python2 ./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|