blob: 0d8cc876224ddb027ff9f59759b6c4c1c8dbfe9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $Id$
# Maintainer: AndyRTR <andyrtr@archlinux.org>
pkgname=graphite
pkgver=1.2.4
pkgrel=1
epoch=1
arch=('i686' 'x86_64')
url="http://projects.palaso.org/projects/graphitedev"
pkgdesc='reimplementation of the SIL Graphite text processing engine'
license=('LGPL' 'GPL' 'custom')
depends=('gcc-libs')
makedepends=('cmake' 'freetype2' 'python2')
# - only for docs - target doesn't install properly
# 'doxygen' 'texlive-latexextra' 'graphviz' 'asciidoc' 'perl-module-build' 'icu') # builds doc properly? 'texlive-helvetic' seems to be missing
options=('!emptydirs')
source=(http://downloads.sourceforge.net/project/silgraphite/graphite2/graphite2-${pkgver}.tgz
graphite2-1.2.0-cmakepath.patch)
md5sums=('2ef839348fe28e3b923bf8cced440227'
'00353b67941dbc30b76a43253760769e')
build() {
cd "${srcdir}"
# python2 fixes
sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" graphite2-${pkgver}/tests/{jsoncmp,fuzztest,defuzz,corrupt.py}
# fix install path - .cmake files contain architecture dependend content - patch taken from FC/Slackware
pushd graphite2-${pkgver}
patch -Np1 -i ${srcdir}/graphite2-1.2.0-cmakepath.patch
popd
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 \
#-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON # remove when docs install target will be fixed
# fix unwanted -O3 cflag (taken form Debian)
find . -type f ! -name "rules" ! -name "changelog" -exec sed -i -e 's/\-O3//g' {} \;
make
#make docs
}
check() {
cd "${srcdir}"/build
sed -i "s:python:python2:g" tests/CTestTestfile.cmake
ctest
}
package() {
cd "${srcdir}"/build
# FIXME: all target doesn't install the docs target files
make DESTDIR="$pkgdir/" install
# licenses
mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
install -m644 "${srcdir}"/graphite2-${pkgver}/COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/
}
|