forked from ports/compat-32
27 lines
660 B
Plaintext
27 lines
660 B
Plaintext
# 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
|
|
# 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
|
|
version=1.14.2
|
|
release=1
|
|
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 \
|
|
--enable-tee=yes
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|