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

github.com/torch/optim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Farabet <clement.farabet@gmail.com>2013-03-13 22:30:54 +0400
committerClement Farabet <clement.farabet@gmail.com>2013-03-13 22:30:54 +0400
commit0f1143db5a827159d7f016b2ccfad17c5faf4cd6 (patch)
treec1d413b6b8f9875b00480978ecc202520568fbbf
parentcac62adf32c00a3a1de0a2fc9c92d7a1874f4645 (diff)
New version.
-rw-r--r--optim-1.0.2-0.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/optim-1.0.2-0.rockspec b/optim-1.0.2-0.rockspec
new file mode 100644
index 0000000..f3391da
--- /dev/null
+++ b/optim-1.0.2-0.rockspec
@@ -0,0 +1,28 @@
+package = "optim"
+version = "1.0.2-0"
+
+source = {
+ url = "git://github.com/koraykv/optim",
+ tag = "1.0.2-0"
+}
+
+description = {
+ summary = "An optimization library for Torch.",
+ detailed = [[
+This package contains several optimization routines for Torch.
+ ]],
+ homepage = "https://github.com/koraykv/optim",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "sys >= 1.0",
+}
+
+build = {
+ type = "cmake",
+ variables = {
+ LUAROCKS_PREFIX = "$(PREFIX)"
+ }
+}