opt/cairo/Pkgfile

23 lines
693 B
Plaintext
Raw Normal View History

# 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
# Depends on: fontconfig, libpng, xorg-libxext, xorg-libxrender, xorg-libpixman, xorg-xcb-util, glib
name=cairo
2017-01-02 12:38:03 +01:00
version=1.15.4
2013-08-28 18:13:02 +02:00
release=1
2017-01-02 12:38:03 +01:00
source=(https://cairographics.org/snapshots/cairo-$version.tar.xz)
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
}