package/mawk: new package

Interpreter for the AWK Programming Language.

Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Ismael Luceno 2021-03-04 14:40:49 +01:00 committed by Yann E. MORIN
parent d8e6179807
commit bd77d45572
5 changed files with 23 additions and 0 deletions

View File

@ -1123,6 +1123,7 @@ F: package/exempi/
N: Ismael Luceno <ismael@iodev.co.uk>
F: package/axel/
F: package/mawk/
N: Jagan Teki <jagan@amarulasolutions.com>
F: board/amarula/

View File

@ -178,6 +178,7 @@ menu "Development tools"
source "package/jq/Config.in"
source "package/libtool/Config.in"
source "package/make/Config.in"
source "package/mawk/Config.in"
source "package/patch/Config.in"
source "package/pkgconf/Config.in"
source "package/ripgrep/Config.in"

6
package/mawk/Config.in Normal file
View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_MAWK
bool "mawk"
help
Interpreter for the AWK Programming Language.
http://invisible-island.net/mawk/mawk.html

2
package/mawk/mawk.hash Normal file
View File

@ -0,0 +1,2 @@
sha256 7fd4cd1e1fae9290fe089171181bbc6291dfd9bca939ca804f0ddb851c8b8237 mawk-1.3.4-20200120.tgz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

13
package/mawk/mawk.mk Normal file
View File

@ -0,0 +1,13 @@
################################################################################
#
# mawk
#
################################################################################
MAWK_VERSION = 1.3.4-20200120
MAWK_SITE = https://invisible-mirror.net/archives/mawk
MAWK_SOURCE = mawk-$(MAWK_VERSION).tgz
MAWK_LICENSE = GPL-2.0
MAWK_LICENSE_FILES = COPYING
$(eval $(autotools-package))