Skip to content

Commit

Permalink
Adding rockspec files to install injarg via LuaRocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Schulz committed Feb 16, 2018
1 parent e03310b commit c0d4e20
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
30 changes: 30 additions & 0 deletions dist/injarg-0.1.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
28 changes: 28 additions & 0 deletions dist/injarg-scm-0.rockspec
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit c0d4e20

Please sign in to comment.