blob: f3c5180235cada3b55d84cfc35ae3b9bdb4a28c4 (
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"
DESCRIPTION = "A program that you can use to select particular records in a \
file and perform operations upon them."
SRC_URI = ${GNU_MIRROR}/${PN}/${P}.tar.gz \
file://${FILESDIR}/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"
|