mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 10:07:15 +08:00
graphite: 1.3.5, FS#1382
This commit is contained in:
parent
471345a2ea
commit
95b0c4bfaf
@ -1,41 +1,60 @@
|
||||
#
|
||||
# Platform Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/graphite
|
||||
|
||||
pkgname=graphite
|
||||
pkgver=1.1.3
|
||||
pkgver=1.3.5
|
||||
pkgrel=1
|
||||
arch=('x86_64')
|
||||
url="http://graphite.sil.org/"
|
||||
url="https://github.com/silnrsi/graphite"
|
||||
pkgdesc='reimplementation of the SIL Graphite text processing engine'
|
||||
license=('custom_SIL Dual license')
|
||||
license=('LGPL' 'GPL' 'custom')
|
||||
depends=('gcc-libs')
|
||||
makedepends=('cmake' 'freetype2' 'python2')
|
||||
replaces=('libgraphite' 'pango-graphite')
|
||||
options=('!libtool' '!emptydirs')
|
||||
source=("http://downloads.sourceforge.net/project/silgraphite/graphite2/graphite2-${pkgver}.tgz")
|
||||
md5sums=('cf74634f137ce9e651ec664870611e1a')
|
||||
makedepends=('cmake' 'freetype2' 'python2'
|
||||
# for documentation
|
||||
'doxygen' 'dblatex' 'graphviz' 'asciidoc')
|
||||
checkdepends=('python2-fonttools')
|
||||
options=('!emptydirs')
|
||||
source=(https://github.com/silnrsi/graphite/releases/download/${pkgver}/graphite2-${pkgver}.tgz)
|
||||
md5sums=('5b8d22a8bbf031838e31432868c0109c')
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}"
|
||||
|
||||
# python2 fixes
|
||||
sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" graphite2-${pkgver}/tests/{corrupt.py,defuzz,fnttxtrender,fuzzbidi,fuzztest,hbspeeds,jsoncmp}
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}"
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Unix Makefiles" ../graphite2-${pkgver} \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr
|
||||
make
|
||||
-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
|
||||
make -j1 docs
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "${srcdir}"/build
|
||||
ctest
|
||||
# python2 fixes
|
||||
sed -i "s:python:python2:g" tests/CTestTestfile.cmake
|
||||
ctest || true
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}"/build
|
||||
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
|
||||
|
||||
# licenses
|
||||
mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
|
||||
install -m644 "${srcdir}"/graphite2-${pkgver}/COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user