blob: 1a076905e1a99c57a3fc8ef76d9d160e1c82cb59 (
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
|
SECTION = "unknown"
DEPENDS = "jpeg zlib libpng espgs-native"
LICENSE = "GPL"
SRC_URI = "ftp://ftp.easysw.com/pub/ghostscript/espgs-${PV}-source.tar.bz2"
S = "${WORKDIR}/espgs-${PV}"
inherit autotools
EXTRA_OECONF = "--with-drivers= \
--without-ijs \
--without-gimp-print \
--without-omni \
--without-x \
--disable-cups"
EXTRA_OEMAKE = "'BUILD_TIME_GS=${STAGING_BINDIR}/gs' \
'ECHOGS_XE=${STAGING_BINDIR}/echogs' \
'GENARCH_XE=${STAGING_BINDIR}/genarch' \
'GENCONF_XE=${STAGING_BINDIR}/genconf'"
do_install () {
oe_runmake 'prefix=${D}/${prefix}' \
'bindir=${D}/${bindir}' \
'datadir=${D}/${datadir}' \
'mandir=${D}/${mandir}' install
}
|