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
|
2008-04-11 09:53:55 +02:00
|
|
|
# Depends on: fontconfig, glitz, libpng, xorg-libxrender, xorg-libpixman
|
2009-01-10 11:07:55 +01:00
|
|
|
# Nice to have: xorg-xcb-util
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=cairo
|
2008-12-16 17:26:17 +01:00
|
|
|
version=1.8.6
|
2009-01-10 11:07:55 +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 \
|
2009-01-10 11:07:55 +01:00
|
|
|
--enable-xcb=auto \
|
2006-02-23 17:10:28 +00:00
|
|
|
--enable-ps \
|
|
|
|
--enable-pdf \
|
|
|
|
--enable-glitz \
|
|
|
|
--disable-gtk-doc
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share
|
|
|
|
}
|