blob: a731421d830d03c94241e57ce36ec03a7e76faa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Fribidi library for bidirectional text"
SECTION = "libs"
LICENSE = "GPL"
inherit autotools pkgconfig
PR = "r0"
S = "${WORKDIR}/fribidi-${PV}"
SRC_URI = "${SOURCEFORGE_MIRROR}/fribidi/fribidi-${PV}.tar.bz2 \
file://libtool-update.patch;patch=1"
#PACKAGES += " ${PN}-bin"
FILES_${PN} = "${libdir}/lib*.so.*"
#FILES_${PN}-bin = "${libdir}/uu*"
do_configure_prepend () {
# this version of libtool is old - we have to nobble this file to get it to litoolize
rm ltconfig
rm aclocal.m4
rm acinclude.m4
}
|