Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBerin Martini <berin.martini@gmail.com>2013-02-07 02:16:14 +0400
committerBerin Martini <berin.martini@gmail.com>2013-02-07 02:16:14 +0400
commit46fcd4cddb5c2b40bf6cfb948be6e71119952984 (patch)
tree68814bc68d60fed9ec847c5316c3ac0241f8dc2d /nnx-0.1-1.rockspec
parentc9108c94366958acaa1f94f7b477e64b0072b90e (diff)
Tag rockspec to master branch
Turns the nnx package into a rolling release install. Thus when "luarocks install nnx" is run the latest code from the master is compiled and installed. This free developers from having to worry about version numbers for the most part.
Diffstat (limited to 'nnx-0.1-1.rockspec')
-rw-r--r--nnx-0.1-1.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/nnx-0.1-1.rockspec b/nnx-0.1-1.rockspec
new file mode 100644
index 0000000..f58f943
--- /dev/null
+++ b/nnx-0.1-1.rockspec
@@ -0,0 +1,28 @@
+package = "nnx"
+version = "0.1-1"
+
+source = {
+ url = "git://github.com/clementfarabet/lua---nnx",
+ tag = "master"
+}
+
+description = {
+ summary = "A completely unstable and experimental package that extends Torch's builtin nn library",
+ detailed = [[
+This is an experimental package that extends nn. You've be warned!
+ ]],
+ homepage = "https://github.com/clementfarabet/lua---nnx",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "xlua >= 1.0"
+}
+
+build = {
+ type = "cmake",
+ variables = {
+ LUAROCKS_PREFIX = "$(PREFIX)"
+ }
+}