blob: 7d4152a00909987d294eba5aad8b176d9e7ac901 (
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
64
65
66
67
68
69
|
#!/bin/sh
NAME="ghostscript"
DESC="An interpreter for the PostScript language and for PDF"
MAKEDEPS="make freetype2 openjpeg libpng zlib tiff cups jbig2dec"
DEPS="musl "
PKG_VER=9.56.1
SOURCE="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9561/ghostscript-$PKG_VER.tar.gz"
ADDITIONAL="ghostscript-system-zlib.patch fix-sprintf.patch "
prepare () {
apply_patches
rm -r jpeg libpng zlib tiff lcms2mt cups/libs jbig2dec \
freetype
# fix parallel builds
sed -i -e 's/ECHO_XE/ECHOGS_XE/g' \
-e 's/^\($(GLOBJ)md5.$(OBJ) :.*\)/\1 $(ECHOGS_XE)/' \
base/lib.mak
aclocal && autoconf --force
cd $BUILD_ROOT/ijs
libtoolize --force && aclocal && autoconf && automake --add-missing
}
build () {
# build ijs
cd "$BUILD_ROOT"/ijs
./configure \
--prefix=/usr \
--enable-shared \
--disable-static
make
cd "$BUILD_ROOT"
# --disable-compile-inits is needed to link with system-zlib
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--docdir=/usr/share/doc/ghostscript \
--enable-dynamic \
--with-system-libtiff \
--with-ijs \
--with-jbig2dec \
--without-libpaper \
--without-versioned-path \
--enable-gtk \
--with-drivers=ALL \
--with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \
--disable-compile-inits
make obj/arch.h # workaround parallel build issue
make so all
}
package () {
make -j1 DESTDIR="$PKG_DEST" install soinstall
cd "$BUILD_ROOT"/ijs
make -j1 DESTDIR="$PKG_DEST" install
cd ..
# create empty dir for future fonts
mkdir -p "$PKG_DEST"/usr/share/fonts/Type1
}
|