blob: 7f8c0e1c36eae8ef09f46ea130f51f78c5f14b16 (
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
|
DESCRIPTION = "HP Linux Imaging and Printing"
LICENSE = "GPL, MIT"
# currently, we build a stripped down version that only includes IJS
# and components required to implement a minimal printing system
# for embedded systems.
SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-${PV}.tar.gz \
file://cross-build.patch;patch=1"
PR = "r1"
inherit autotools
EXTRA_OECONF = ' \
BUILD_SYS="" HOST_SYS="" \
--disable-network-build \
--disable-doc-build \
--disable-pp-build \
--disable-scan-build \
--disable-gui-build \
--disable-fax-build \
--disable-dbus-build \
--disable-foomatic-drv-install \
--disable-foomatic-rip-hplip-install \
'
# needed by python checks in configure
EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS=""'
PACKAGES += "${PN}-ppd ${PN}-cups ${PN}-backend"
# need to snag the debug file or OE will fail on backend package
FILES_${PN}-dbg += "\
${libdir}/cups/backend/.debug
FILES_${PN}-ppd = "\
${datadir}/ppd"
FILES_${PN}-cups = "\
${datadir}/cups"
FILES_${PN}-backend = "\
${libdir}/cups/backend"
|