2006-02-23 18:10:28 +01:00
|
|
|
# Description: A 2D graphics library with support for multiple output devices
|
|
|
|
# URL: http://www.cairographics.org/
|
2012-06-14 02:10:22 +02:00
|
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
2012-10-15 00:44:34 +02:00
|
|
|
# Depends on: fontconfig, libpng, xorg-libxext, xorg-libxrender, xorg-libpixman, xorg-xcb-util, glib
|
2006-02-23 18:10:28 +01:00
|
|
|
|
|
|
|
name=cairo
|
2013-02-10 19:10:37 +01:00
|
|
|
version=1.12.14
|
2013-06-25 18:30:50 +02:00
|
|
|
release=2
|
2012-05-01 17:15:45 +02:00
|
|
|
source=(http://cairographics.org/releases/$name-$version.tar.xz)
|
2006-02-23 18:10:28 +01:00
|
|
|
|
|
|
|
build() {
|
2012-06-14 02:10:22 +02:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-xcb=yes \
|
|
|
|
--enable-ps \
|
|
|
|
--enable-pdf \
|
2013-06-25 18:30:50 +02:00
|
|
|
--disable-gtk-doc \
|
|
|
|
--enable-tee=yes
|
2012-06-14 02:10:22 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share
|
2006-02-23 18:10:28 +01:00
|
|
|
}
|