blob: 4fe56d6c593ef16ebdceb0bc077a1856df5c960b (
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
|
SECTION = "libs"
require gutenprint_${PV}.bb
DEPENDS = ""
inherit native
EXTRA_OECONF = "\
--disable-nls \
--disable-gtktest \
--enable-cups-ppds \
--disable-libgutenprintui \
--disable-libgutenprintui2 \
--disable-translated-cups-ppds \
--with-ghostscript \
--enable-cups-level3-ppds \
--disable-gimptest \
--enable-test \
--enable-epson \
--with-user-guide \
--with-samples \
--with-escputil \
"
do_configure() {
gnu-configize
libtoolize --force
oe_runconf
}
do_stage() {
autotools_stage_includes
install -m 0755 -d ${STAGING_DATADIR}/cups/model
install -m 0644 src/cups/ppd/C/*ppd* ${STAGING_DATADIR}/cups/model/
# oe_libinstall -so -a -C objs libfreetype ${STAGING_LIBDIR}
}
|