23 lines
611 B
Plaintext
23 lines
611 B
Plaintext
|
# Description: A 2D graphics library with support for multiple output devices
|
||
|
# URL: http://www.cairographics.org/
|
||
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
||
|
# Depends on: fontconfig-32 libpng-32 xorg-libxrender-32 xorg-libpixman-32 xorg-xcb-util-32 glib-32 cairo
|
||
|
|
||
|
name=cairo-32
|
||
|
version=1.12.4
|
||
|
release=2
|
||
|
source=(http://cairographics.org/releases/cairo-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd cairo-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--libdir=/usr/lib32 \
|
||
|
--enable-xcb=yes \
|
||
|
--enable-ps \
|
||
|
--enable-pdf \
|
||
|
--disable-gtk-doc
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -rf $PKG/usr/{bin,include,share}
|
||
|
}
|