blob: 15c7a2cdb3e7640d9474750727346bb65f81f29d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DEPENDS = virtual/libc
RDEPENDS = libc6
SRC_URI := ${SOURCEFORGE_MIRROR}/lct/console-tools-0.3.2.tar.gz \
file://${FILESDIR}/codepage.patch;patch=1 \
file://${FILESDIR}/configure.patch;patch=1
export SUBDIRS='fontfiletools vttools kbdtools screenfonttools contrib \
examples po intl compat'
acpaths=-I config
do_configure_prepend () {
mkdir -p config
cp ${FILESDIR}/config/*.m4 config/
}
do_compile () {
oe_runmake -C lib
oe_runmake 'SUBDIRS=${SUBDIRS}'
}
inherit autotools libtool
|