blob: 71331650f634a2687aafccf72316be1c52983d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# kbd OE build file
# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
SRC_URI="http://ftp.debian.org/debian/pool/main/k/kbd/kbd_1.12.orig.tar.gz"
FILES_${PN} += " /usr/share/consolefonts/drdos8x16.psfu.gz"
do_configure() {
ARCH=${TARGET_ARCH} ./configure
}
do_compile() {
make CC="${CC}" CFLAGS="${CFLAGS}"
}
do_install() {
make DESTDIR=${D} install
}
|