blob: cddaac902e4330e3968c310343e211db9768f640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
LICENSE = "LGPL"
DESCRIPTION = "Runtime libraries for parsing and creating MIME mail"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "glib-2.0 zlib"
inherit gnome autotools_stage lib_package binconfig
SRC_URI += " \
file://iconv-detect.h \
file://nodolt.patch;patch=1"
EXTRA_OECONF += "--disable-mono"
export ac_cv_have_iconv_detect_h=yes
do_configure_append = "cp ${WORKDIR}/iconv-detect.h ${S}"
# we do not need GNOME 1 gnome-config support
do_install_append () {
rm -f ${D}${libdir}/gmimeConf.sh
}
|