blob: d60a190cbd4123da7197a4b0a7ec120bdb84c4a4 (
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
|
DESCRIPTION = "Fribidi library for bidirectional text"
SECTION = "libs"
PRIORITY = "optional"
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
}
|