From c0d4e2009e3496b4a20ab52c1f28f411eceda011 Mon Sep 17 00:00:00 2001 From: Alexander Schulz Date: Fri, 16 Feb 2018 21:55:49 +0100 Subject: [PATCH] Adding rockspec files to install injarg via LuaRocks --- README.adoc | 2 +- dist/injarg-0.1.0-0.rockspec | 30 ++++++++++++++++++++++++++++++ dist/injarg-scm-0.rockspec | 28 ++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 1 deletion(-) create mode 100755 dist/injarg-0.1.0-0.rockspec create mode 100755 dist/injarg-scm-0.rockspec diff --git a/README.adoc b/README.adoc index 1ccc213..1beeb3c 100644 --- a/README.adoc +++ b/README.adoc @@ -1,7 +1,7 @@ = injarg ---- -inject == inj[ect]args[s] +inject == inj[ect]arg[s] ---- Command-line tool that allows to call an app with arguments from an args file. diff --git a/dist/injarg-0.1.0-0.rockspec b/dist/injarg-0.1.0-0.rockspec new file mode 100755 index 0000000..09a3746 --- /dev/null +++ b/dist/injarg-0.1.0-0.rockspec @@ -0,0 +1,30 @@ +package = "injarg" +version = "0.1.0-0" + +description = { + summary = "inject == inj[ect]arg[s]", + detailed = "Command-line tool that allows to call an app with arguments from an args file.", + license = "MIT", + homepage = "https://github.com/aiq/injarg" +} + +source = { + url = "https://github.com/aiq/injarg/archive/v0.1.0.tar.gz", + md5 = "f89e2e74a83d07655941b065a59b42dd", + dir = "injarg-0.1.0" +} + +dependencies = { + "lua >= 5.1", + "luafilesystem" +} + +build = { + type = "builtin", + modules = {}, + install = { + bin = { + [ "injarg" ] = "bin/injarg" + } + } +} diff --git a/dist/injarg-scm-0.rockspec b/dist/injarg-scm-0.rockspec new file mode 100755 index 0000000..806b112 --- /dev/null +++ b/dist/injarg-scm-0.rockspec @@ -0,0 +1,28 @@ +package = "injarg" +version = "scm-0" + +description = { + summary = "inject == inj[ect]arg[s]", + detailed = "Command-line tool that allows to call an app with arguments from an args file.", + license = "MIT", + homepage = "https://github.com/aiq/injarg" +} + +source = { + url = "..." +} + +dependencies = { + "lua >= 5.1", + "luafilesystem", +} + +build = { + type = "builtin", + modules = {}, + install = { + bin = { + [ "injarg" ] = "bin/injarg" + } + } +}