blob: d86c946f30f59d65bcc5ea710f0c12f6ca184ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Librairie 2D graphique
# URL: http://www.cairographics.org/
# Packager: thierryn1 at hispeed dot ch
# Maintainer: Blankoworld <blankoworld at wanadoo dot fr>
# Depends on: xorg, glitz, libpng, xorg-xcb-util
name=cairo
version=1.8.8
release=2
source=( http://cairographics.org/releases/$name-$version.tar.gz )
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-ps \
--enable-pdf \
--enable-glitz \
--enable-xcb \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
}
|