compat-32/cairo-32/Pkgfile

27 lines
660 B
Plaintext
Raw Normal View History

# Description: A 2D graphics library with support for multiple output devices
# URL: http://www.cairographics.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2013-01-31 22:18:14 +01:00
# Depends on: fontconfig-32 libpng-32 xorg-libxext-32 xorg-libxrender-32 xorg-libpixman-32 xorg-xcb-util-32 glib-32 cairo
name=cairo-32
2015-12-20 08:27:02 +01:00
version=1.14.6
2013-09-21 02:23:54 +02:00
release=1
source=(http://cairographics.org/releases/cairo-$version.tar.xz)
build() {
cd cairo-$version
2014-10-27 12:36:45 +01:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--enable-xcb=yes \
--enable-ps \
--enable-pdf \
2013-06-26 04:34:11 +02:00
--disable-gtk-doc \
--enable-tee=yes
2014-10-27 12:36:45 +01:00
make
make DESTDIR=$PKG install
2014-10-27 12:36:45 +01:00
rm -r $PKG/usr/{bin,include,share}
}