7e2d7cfc7425f98c2ec88b1149c11bf54f0cb043
[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.18
4 TERMUX_PKG_SRCURL=http://downloads.ghostscript.com/public/ghostscript-${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_DEPENDS="libtiff"
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-system-libtiff --enable-little-endian"
7
8 # See " it possible to cross compile GhostPCL/GhostXPS" at bottom of
9 # http://ghostscript.com/FAQ.html
10
11 termux_step_pre_configure () {
12 export CCAUX=gcc
13
14 local _ARCHFILE=$TERMUX_PKG_BUILDER_DIR/arch-arm.h
15 $TERMUX_TOUCH -d "next hour" $_ARCHFILE
16 perl -p -i -e "s|TARGET_ARCH_FILE=.*|TARGET_ARCH_FILE=$_ARCHFILE|" $TERMUX_PKG_SRCDIR/Makefile.in
17 }