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:
Diffstat (limited to 'rocks/optim-1.0.4-0.rockspec')
-rw-r--r--rocks/optim-1.0.4-0.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/rocks/optim-1.0.4-0.rockspec b/rocks/optim-1.0.4-0.rockspec
new file mode 100644
index 0000000..d956a2c
--- /dev/null
+++ b/rocks/optim-1.0.4-0.rockspec
@@ -0,0 +1,32 @@
+package = "optim"
+version = "1.0.4-0"
+
+source = {
+ url = "git://github.com/torch/optim",
+ tag = "1.0.4-0"
+}
+
+description = {
+ summary = "An optimization library for Torch.",
+ detailed = [[
+This package contains several optimization routines for Torch.
+ ]],
+ homepage = "https://github.com/torch/optim",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "sys >= 1.0",
+}
+
+build = {
+ type = "command",
+ build_command = [[
+cmake -E make_directory build;
+cd build;
+cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)";
+$(MAKE)
+ ]],
+ install_command = "cd build && $(MAKE) install"
+}