diff options
author | crownedgrouse <[email protected]> | 2020-04-11 15:20:16 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2020-04-13 15:00:56 +0200 |
commit | a187726d5ebce1dd37afdc5f84e609c7401d0965 (patch) | |
tree | 08fdd67eb1bba59f7e27f2e226c2583ed202f6fa | |
parent | 52df18c402f8259be944f2d1b7858a854dc42210 (diff) | |
download | erlang.mk-a187726d5ebce1dd37afdc5f84e609c7401d0965.tar.gz erlang.mk-a187726d5ebce1dd37afdc5f84e609c7401d0965.tar.bz2 erlang.mk-a187726d5ebce1dd37afdc5f84e609c7401d0965.zip |
Add plugin esh.mk to the index/documentation
-rw-r--r-- | doc/src/guide/external_plugins_list.asciidoc | 5 | ||||
-rw-r--r-- | index/esh_mk.mk | 7 | ||||
-rw-r--r-- | test/Makefile | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/doc/src/guide/external_plugins_list.asciidoc b/doc/src/guide/external_plugins_list.asciidoc index dc5a9c6..2f03a7c 100644 --- a/doc/src/guide/external_plugins_list.asciidoc +++ b/doc/src/guide/external_plugins_list.asciidoc @@ -26,6 +26,11 @@ language for the BEAM. An https://github.com/inaka/elvis.mk[Elvis plugin] for Erlang.mk. Elvis is an https://github.com/inaka/elvis[Erlang style reviewer]. +=== esh.mk + +An https://github.com/crownedgrouse/esh.mk[Esh template plugin] for Erlang.mk. +https://github.com/jirutka/esh[Esh] is a simple template engine using shell. + === geas https://github.com/crownedgrouse/geas[Geas] gives aggregated diff --git a/index/esh_mk.mk b/index/esh_mk.mk new file mode 100644 index 0000000..4bd44cf --- /dev/null +++ b/index/esh_mk.mk @@ -0,0 +1,7 @@ +PACKAGES += esh_mk +pkg_esh_mk_name = esh_mk +pkg_esh_mk_description = esh template engine plugin for erlang.mk +pkg_esh_mk_homepage = https://github.com/crownedgrouse/esh.mk +pkg_esh_mk_fetch = git +pkg_esh_mk_repo = https://github.com/crownedgrouse/esh.mk.git +pkg_esh_mk_commit = master diff --git a/test/Makefile b/test/Makefile index 4dcd3d9..4a8b5e3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -165,7 +165,7 @@ $(eval $(foreach t,$(patsubst %.mk,%,$(patsubst plugin_%,%,$(wildcard plugin_*.m # Packages. PACKAGES = $(foreach pkg,$(sort $(wildcard ../index/*.mk)),$(notdir $(basename $(pkg)))) -EXCLUDE_FROM_CHECK = ['ci.erlang.mk', hexer_mk, inaka_mk, 'lfe.mk', rabbitmq_codegen] +EXCLUDE_FROM_CHECK = ['ci.erlang.mk', esh_mk, hexer_mk, inaka_mk, 'lfe.mk', rabbitmq_codegen] packages: $(addprefix pkg-,$(PACKAGES)) |