X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/25bea57f6a6889ac6a738bc4e949a13026a3b4cd..ab81c00bfe79f309349006a662cda6360ecd7950:/disabled-packages/ghostscript/build.sh diff --git a/disabled-packages/ghostscript/build.sh b/disabled-packages/ghostscript/build.sh index 70511e02..4c4cc6de 100644 --- a/disabled-packages/ghostscript/build.sh +++ b/disabled-packages/ghostscript/build.sh @@ -1,15 +1,37 @@ TERMUX_PKG_HOMEPAGE=http://www.ghostscript.com/ TERMUX_PKG_DESCRIPTION="Interpreter for the PostScript language and for PDF" -TERMUX_PKG_VERSION=9.18 -TERMUX_PKG_SRCURL=http://downloads.ghostscript.com/public/ghostscript-${TERMUX_PKG_VERSION}.tar.gz -TERMUX_PKG_DEPENDS="libtiff" -TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-system-libtiff" - -# See " it possible to cross compile GhostPCL/GhostXPS" at bottom of -# http://ghostscript.com/FAQ.html - -termux_step_pre_configure () { - local _ARCHFILE=$TERMUX_PKG_BUILDER_DIR/arch-arm.h - $TERMUX_TOUCH -d "next hour" $_ARCHFILE - perl -p -i -e "s|TARGET_ARCH_FILE=.*|TARGET_ARCH_FILE=$_ARCHFILE|" $TERMUX_PKG_SRCDIR/Makefile.in +TERMUX_PKG_VERSION=9.21 +TERMUX_PKG_SRCURL=https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${TERMUX_PKG_VERSION//.}/ghostpdl-${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_SHA256=82abf56e96e27cf4d1b17c0671f9ab3c5222454131588a49d06c97a332988e8d +TERMUX_PKG_DEPENDS="libandroid-support, libtiff, libjpeg-turbo, libpng" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-system-libtiff \ +--enable-little-endian \ +--without-x \ +--with-arch_h=$TERMUX_PKG_BUILDER_DIR/arch-${TERMUX_ARCH}.h \ +CCAUX=gcc \ +--build=$TERMUX_BUILD_TUPLE \ +--without-pcl" + +#building with PCL gives: +# /home/builder/.termux-build/ghostscript/src/pcl/pl/pl.mak:108: recipe for target 'obj/plver.h' failed +# make: *** [obj/plver.h] Segmentation fault (core dumped) +# make: *** Deleting file 'obj/plver.h' +#See also: https://bugs.ghostscript.com/show_bug.cgi?id=695979 + +termux_step_post_extract_package () { + rm -rdf $TERMUX_PKG_SRCDIR/jpeg + rm -rdf $TERMUX_PKG_SRCDIR/libpng + rm -rdf $TERMUX_PKG_SRCDIR/expat $TERMUX_PKG_SRCDIR/jasper $TERMUX_PKG_SRCDIR/freetype $TERMUX_PKG_SRCDIR/lcms $TERMUX_PKG_SRCDIR/tiff + + if [ -f $PREFIX/include/libandroid-support/time.h ]; then + mv $PREFIX/include/libandroid-support/time.h $PREFIX/include/libandroid-support/time.h_ + fi + # Patch needed to libandroid's time.h? ghostscript/src/base/stat_.h includes stat_.h which includes time.h which creates a loop. + # See http://stackoverflow.com/questions/14947691/c-system-file-bits-stat-h-suddenly-breaks-with-error-field-st-atim-has-inc +} + +termux_step_post_make_install () { + if [ -f $PREFIX/include/libandroid-support/time.h_ ]; then + mv $PREFIX/include/libandroid-support/time.h_ $PREFIX/include/libandroid-support/time.h + fi }