PKGBUILDs/extra/cairo/PKGBUILD

71 lines
1.7 KiB
Bash
Raw Normal View History

2014-09-19 18:52:05 +00:00
# $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
2018-03-25 00:43:31 +00:00
pkgver=1.15.10+54+g1ed124ace
2017-12-22 13:35:16 +00:00
pkgrel=1
2017-09-15 00:53:35 +00:00
pkgdesc="2D graphics library with support for multiple output devices"
url="https://cairographics.org/"
2017-12-22 13:35:16 +00:00
arch=(x86_64)
2018-03-25 00:43:31 +00:00
license=(LGPL MPL)
depends=(libpng libxrender libxext fontconfig pixman glib2 lzo)
makedepends=(librsvg gtk2 poppler-glib libspectre gtk-doc git)
_commit=1ed124ace201946177eab962d3b07bb2fedf9026 # master
source=("git+https://anongit.freedesktop.org/git/cairo#commit=$_commit"
utf-8.diff)
sha1sums=('SKIP'
'3f680dea8533bcce4ca2af5d25c546235ef7b339')
pkgver() {
cd $pkgname
git describe --tags | sed 's/-/+/g'
}
2014-09-19 18:52:05 +00:00
2017-09-15 00:53:35 +00:00
prepare() {
2018-03-25 00:43:31 +00:00
cd $pkgname
# Fixup tag for pkgver()
git tag -f 1.15.10 5e6b9aeb5e3402ff17ae8ee8548ae2341c2f7d59
# Fix non-UTF-8 sources giving gtk-doc trouble
patch -Np1 -i ../utf-8.diff
# Update gtk-doc
cp /usr/share/aclocal/gtk-doc.m4 build/aclocal.gtk-doc.m4
cp /usr/share/gtk-doc/data/gtk-doc.make build/Makefile.am.gtk-doc
NOCONFIGURE=1 ./autogen.sh
2014-09-19 18:52:05 +00:00
}
2017-09-15 00:53:35 +00:00
build() {
2018-03-25 00:43:31 +00:00
cd $pkgname
2017-09-15 00:53:35 +00:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-gl \
--enable-tee \
--enable-svg \
--enable-ps \
--enable-pdf \
--enable-gobject \
--enable-gtk-doc
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
2014-09-19 18:52:05 +00:00
}
2018-03-25 00:43:31 +00:00
check() {
cd $pkgname
# https://people.gnome.org/~federico/blog/helping-cairo.html
#make check
}
2014-09-19 18:52:05 +00:00
package() {
2018-03-25 00:43:31 +00:00
cd $pkgname
2014-09-19 18:52:05 +00:00
make DESTDIR="$pkgdir" install
}