blob: 75cbe75afb144735c92294e02014a309d807139b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DEPENDS = "virtual/libc"
DESCRIPTION = "Allows you to set-up and manipulate the Linux console."
SRC_URI = "${SOURCEFORGE_MIRROR}/lct/console-tools-${PV}.tar.gz \
file://${FILESDIR}/codepage.patch;patch=1 \
file://${FILESDIR}/configure.patch;patch=1 \
file://${FILESDIR}/compile.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
|