blob: 90bfdc01b944d546b6d23e509f984ae22993c3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DEPENDS = "virtual/libc"
DESCRIPTION = "A program that you can use to select particular records in a \
file and perform operations upon them."
SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
file://configure.patch;patch=1"
inherit autotools
EXTRA_OEMAKE = "'bindir=${D}/${bindir}' 'mandir=${D}/${mandir}/man1' 'infodir=${D}/${datadir}/info' \
'libexecdir=${D}/${libexecdir}' 'datadir=${D}/${datadir}/awk'"
do_configure_prepend () {
mv aclocal.m4 acinclude.m4
}
do_install_append () {
rm -f ${D}/${bindir}/gawk-*
}
FILES_gawk_append = " ${datadir}/awk"
|