2015-08-15 00:27:51 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - patch for arm
|
|
|
|
|
|
|
|
pkgname=graphite
|
2016-03-01 19:09:36 +00:00
|
|
|
pkgver=1.3.6
|
2016-01-22 19:29:35 +00:00
|
|
|
pkgrel=1
|
2015-08-15 00:27:51 +00:00
|
|
|
epoch=1
|
|
|
|
arch=('i686' 'x86_64')
|
2016-01-22 19:29:35 +00:00
|
|
|
url="https://github.com/silnrsi/graphite"
|
2015-08-15 00:27:51 +00:00
|
|
|
pkgdesc='reimplementation of the SIL Graphite text processing engine'
|
|
|
|
license=('LGPL' 'GPL' 'custom')
|
|
|
|
depends=('gcc-libs')
|
2016-01-22 19:29:35 +00:00
|
|
|
makedepends=('cmake' 'freetype2' 'python2'
|
|
|
|
# for documentation
|
|
|
|
'doxygen' 'dblatex' 'graphviz' 'asciidoc')
|
|
|
|
checkdepends=('python2-fonttools')
|
2015-08-15 00:27:51 +00:00
|
|
|
options=('!emptydirs')
|
2016-03-01 19:09:36 +00:00
|
|
|
source=(https://github.com/silnrsi/graphite/releases/download/${pkgver}/graphite-${pkgver}.tgz
|
2015-08-15 00:27:51 +00:00
|
|
|
graphite-arm-nodefaultlibs.patch)
|
2016-03-01 19:09:36 +00:00
|
|
|
sha1sums=('052ed2e3653f7a026bf9ff63ca42683ce0bcefb4'
|
2016-01-22 19:29:35 +00:00
|
|
|
'35a628ad03433fa8e3febe7222844d4c')
|
|
|
|
|
2015-08-15 00:27:51 +00:00
|
|
|
|
2015-09-05 00:05:42 +00:00
|
|
|
prepare() {
|
2015-08-15 00:27:51 +00:00
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
# python2 fixes
|
2015-09-29 17:19:44 +00:00
|
|
|
sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" graphite2-${pkgver}/tests/{corrupt.py,defuzz,fnttxtrender,fuzzbidi,fuzztest,hbspeeds,jsoncmp}
|
2016-01-22 19:29:35 +00:00
|
|
|
|
|
|
|
cd graphite2-${pkgver}
|
2015-08-15 00:27:51 +00:00
|
|
|
patch -Np1 -i ${srcdir}/graphite-arm-nodefaultlibs.patch
|
2015-09-05 00:05:42 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 19:29:35 +00:00
|
|
|
build() {
|
2015-08-15 00:27:51 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G "Unix Makefiles" ../graphite2-${pkgver} \
|
|
|
|
-DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE:STRING=Release \
|
|
|
|
-DGRAPHITE2_COMPARE_RENDERER=OFF \
|
|
|
|
|
|
|
|
# fix unwanted -O3 cflag (taken form Debian)
|
|
|
|
find . -type f ! -name "rules" ! -name "changelog" -exec sed -i -e 's/\-O3//g' {} \;
|
|
|
|
|
|
|
|
make
|
2016-01-22 19:29:35 +00:00
|
|
|
make -j1 docs
|
2015-08-15 00:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd "${srcdir}"/build
|
2016-01-22 19:29:35 +00:00
|
|
|
# python2 fixes
|
2015-08-15 00:27:51 +00:00
|
|
|
sed -i "s:python:python2:g" tests/CTestTestfile.cmake
|
2016-01-22 19:29:35 +00:00
|
|
|
ctest || true
|
2015-08-15 00:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}"/build
|
2016-01-22 19:29:35 +00:00
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
# install doc files
|
|
|
|
mkdir -p "${pkgdir}"/usr/share/doc/graphite2/api
|
|
|
|
cp -vrf doc/doxygen/{html,latex/refman.pdf} "${pkgdir}"/usr/share/doc/graphite2/api
|
|
|
|
cp -vrf doc/{GTF,manual}.html "${pkgdir}"/usr/share/doc/graphite2
|
2015-08-15 00:27:51 +00:00
|
|
|
|
|
|
|
# licenses
|
|
|
|
mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
|
|
|
|
install -m644 "${srcdir}"/graphite2-${pkgver}/COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/
|
|
|
|
}
|