2006-02-23 17:10:28 +00:00
|
|
|
# Description: A 2D graphics library with support for multiple output devices
|
|
|
|
# URL: http://www.cairographics.org/
|
2008-01-30 20:57:48 +01:00
|
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
2010-05-17 07:57:25 +02:00
|
|
|
# Depends on: fontconfig, libpng, xorg-libxrender, xorg-libpixman, xorg-xcb-util
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=cairo
|
2011-01-08 18:17:53 +01:00
|
|
|
version=1.10.2
|
2011-03-09 08:28:50 +01:00
|
|
|
release=2
|
2006-07-05 14:53:59 +00:00
|
|
|
source=(http://cairographics.org/releases/$name-$version.tar.gz)
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2010-03-04 19:50:59 +01:00
|
|
|
--enable-xcb=yes \
|
2006-02-23 17:10:28 +00:00
|
|
|
--enable-ps \
|
|
|
|
--enable-pdf \
|
2011-03-09 08:28:50 +01:00
|
|
|
--enable-tee \
|
2006-02-23 17:10:28 +00:00
|
|
|
--disable-gtk-doc
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share
|
|
|
|
}
|