blob: 2429b798c2e85cab1f85d80837003cbd795004b7 (
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
|
DESCRIPTION = "RFC2425 MIME Directory Profile library, supporting vCard and iCalendar"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "LGPL"
DEPENDS = "intltool-native"
PR = "r4"
# 0.3.1 has at least 2 known bugs which may lead to data corruption/loss:
# 1. Arbitrary cutting off of NOTE field during parsing.
# 2. Parsing only one value from CATEGORIES field.
DEFAULT_PREFERENCE = "-1"
SRC_URI = "http://www.rittau.org/mimedir/${P}.tar.gz \
file://mimedir-duration.diff;patch=1"
inherit autotools pkgconfig
EXTRA_OECONF = "--disable-gtk-doc"
do_stage() {
autotools_stage_all
}
PACKAGES += "libmimedir-utils"
FILES_libmimedir-utils = "${bindir}"
FILES_${PN} = "${libdir}/*.so.*"
|