blob: 3066a9e51cd2e28f0d749123dd41fad306f85f50 (
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
|
DESCRIPTION = "ESP Ghostscript is an up-to-date GNU Ghostscript distribution \
including bug fixes, new drivers, and additional support for CUPS."
HOMEPAGE = "http://espgs.sf.net"
SECTION = "libs"
DEPENDS = "jpeg zlib libpng"
LICENSE = "GPL"
SRC_URI = "${SOURCEFORGE_MIRROR}/espgs/espgs-${PV}-source.tar.bz2"
S = "${WORKDIR}/espgs-${PV}"
PARALLEL_MAKE = ""
inherit autotools
EXTRA_OECONF = "--with-drivers= \
--without-ijs \
--without-gimp-print \
--without-omni \
--without-x \
--disable-cups"
do_compile() {
oe_runmake CCAUX="${BUILD_CC}"
}
do_install () {
oe_runmake 'prefix=${D}${prefix}' \
'bindir=${D}${bindir}' \
'datadir=${D}${datadir}' \
'mandir=${D}${mandir}' install
}
SRC_URI[md5sum] = "d30bf5c09f2c7caa8291f6305cf03044"
SRC_URI[sha256sum] = "7e0ed705da90a4c65368675d68ccecb871f89cb06d2efc61ddd0bb5fee5570f2"
|