ghostscript: Update to 9.21 and patch to make it build. (#867)
[termux-packages] / disabled-packages / ghostscript / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.ghostscript.com/
2 TERMUX_PKG_DESCRIPTION="Interpreter for the PostScript language and for PDF"
3 TERMUX_PKG_VERSION=9.21
4 TERMUX_PKG_SRCURL=https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${TERMUX_PKG_VERSION//.}/ghostpdl-${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_SHA256=82abf56e96e27cf4d1b17c0671f9ab3c5222454131588a49d06c97a332988e8d
6 TERMUX_PKG_DEPENDS="libandroid-support, libtiff, libjpeg-turbo, libpng"
7 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-system-libtiff \
8 --enable-little-endian \
9 --without-x \
10 --with-arch_h=$TERMUX_PKG_BUILDER_DIR/arch-arm.h \
11 CCAUX=gcc \
12 --build=$TERMUX_BUILD_TUPLE \
13 --without-pcl"
14
15 #building with PCL gives:
16 # /home/builder/.termux-build/ghostscript/src/pcl/pl/pl.mak:108: recipe for target 'obj/plver.h' failed
17 # make: *** [obj/plver.h] Segmentation fault (core dumped)
18 # make: *** Deleting file 'obj/plver.h'
19 #See also: https://bugs.ghostscript.com/show_bug.cgi?id=695979
20
21 termux_step_post_extract_package () {
22 rm -rdf $TERMUX_PKG_SRCDIR/jpeg
23 rm -rdf $TERMUX_PKG_SRCDIR/libpng
24
25 if [ -f $PREFIX/include/libandroid-support/time.h ]; then
26 mv $PREFIX/include/libandroid-support/time.h $PREFIX/include/libandroid-support/time.h_
27 fi
28 # Patch needed to libandroid's time.h? ghostscript/src/base/stat_.h includes stat_.h which includes time.h which creates a loop.
29 # See http://stackoverflow.com/questions/14947691/c-system-file-bits-stat-h-suddenly-breaks-with-error-field-st-atim-has-inc
30 }
31
32 termux_step_post_make_install () {
33 if [ -f $PREFIX/include/libandroid-support/time.h_ ]; then
34 mv $PREFIX/include/libandroid-support/time.h_ $PREFIX/include/libandroid-support/time.h
35 fi
36 }