mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
61 lines
1.6 KiB
Bash
61 lines
1.6 KiB
Bash
# $Id$
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Brice Carpentier <brice@daknet.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - drop valgrind makedepend
|
|
|
|
pkgname=cairo
|
|
pkgver=1.14.2
|
|
pkgrel=1
|
|
pkgdesc="Cairo vector graphics library"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL' 'MPL')
|
|
url="http://cairographics.org/"
|
|
depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman>=0.28.0' 'glib2' 'mesa' 'libgl' 'lzo')
|
|
makedepends=('mesa-libgl' 'librsvg' 'gtk2' 'poppler-glib' 'libspectre' 'gtk-doc' 'git')
|
|
# for the test suite:
|
|
#'ttf-dejavu' 'gsfonts' 'xorg-server-xvfb' ) # 'libdrm')
|
|
#optdepends=('xcb-util: for XCB backend') # really needed?
|
|
provides=('cairo-xcb')
|
|
replaces=('cairo-xcb')
|
|
source=(http://cairographics.org/releases/cairo-$pkgver.tar.xz)
|
|
sha1sums=('c8da68aa66ca0855b5d0ff552766d3e8679e1d24')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--disable-lto \
|
|
--enable-tee \
|
|
--enable-gl \
|
|
--enable-egl \
|
|
--enable-svg \
|
|
--enable-ps \
|
|
--enable-pdf \
|
|
--enable-gobject \
|
|
--enable-gtk-doc
|
|
|
|
#--disable-xlib-xcb \
|
|
#--enable-test-surfaces \ takes ages
|
|
#--enable-drm # breaks build
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
#make -j1 -k test || /bin/true
|
|
|
|
# results:
|
|
# 1.12.8-1 # 162 Passed, 328 Failed [ 8 crashed, 10 expected], 26 Skipped
|
|
# 1.12.12-2: # 29 Passed, 464 Failed [460 crashed, 2 expected], 26 Skipped
|
|
# 1.12.16-1: # 144 Passed, 364 Failed [ 6 crashed, 12 expected], 27 Skipped
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|