mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
74 lines
2.1 KiB
Bash
74 lines
2.1 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=ghostscript
|
|
pkgver=9.07
|
|
pkgrel=3
|
|
pkgdesc="An interpreter for the PostScript language"
|
|
arch=('x86_64')
|
|
license=('GPL3' 'custom')
|
|
depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 'libtiff' 'lcms')
|
|
makedepends=('gnutls')
|
|
optdepends=('texlive-core: needed for dvipdf')
|
|
url="http://www.ghostscript.com/"
|
|
source=("http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2")
|
|
md5sums=('eea27befc1e85bef6d4768202f6b03a5')
|
|
options=('!libtool' '!makeflags')
|
|
|
|
build() {
|
|
cd ${srcdir}/ghostscript-${pkgver}
|
|
|
|
# force it to use system-libs
|
|
rm -rf jpeg libpng zlib jasper expat tiff freetype lcms
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-dynamic \
|
|
--with-ijs \
|
|
--with-jbig2dec \
|
|
--without-omni \
|
|
--with-x \
|
|
--with-drivers=ALL\
|
|
--with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \
|
|
--with-install-cups \
|
|
--enable-fontconfig \
|
|
--enable-freetype \
|
|
--without-luratech \
|
|
--disable-compile-inits \
|
|
--with-system-libtiff \
|
|
--disable-gtk
|
|
|
|
make
|
|
|
|
# Build IJS
|
|
cd ${srcdir}/ghostscript-${pkgver}/ijs
|
|
sed -i "s:AM_PROG_CC_STDC:AC_PROG_CC:g" configure.ac
|
|
./autogen.sh
|
|
./configure --prefix=/usr --enable-shared --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/ghostscript-${pkgver}
|
|
make DESTDIR=${pkgdir} \
|
|
cups_serverroot=${pkgdir}/etc/cups \
|
|
cups_serverbin=${pkgdir}/usr/lib/cups install soinstall
|
|
|
|
# install missing doc files # http://bugs.archlinux.org/task/18023
|
|
install -m 644 ${srcdir}/ghostscript-${pkgver}/doc/{Ps2ps2.htm,gs-vms.hlp,gsdoc.el,pscet_status.txt} ${pkgdir}/usr/share/ghostscript/$pkgver/doc/
|
|
|
|
mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}
|
|
install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/
|
|
|
|
# remove unwanted localized man-pages
|
|
rm -rf $pkgdir/usr/share/man/[^man1]*
|
|
|
|
# remove filters that are now maintained in cups-filter
|
|
rm -rf "$pkgdir"/usr/lib/cups/filter/{gstopxl,gstoraster}
|
|
|
|
# install IJS
|
|
cd ${srcdir}/ghostscript-${pkgver}/ijs
|
|
make DESTDIR=${pkgdir} install
|
|
}
|