From 1c6aa645e52193c94cad30a690720dc2228836b8 Mon Sep 17 00:00:00 2001 From: David Heyman Date: Sat, 10 Dec 2016 20:32:54 -0500 Subject: [PATCH 1/2] Fixed two small errors preventing the automated installation from working. --- MANIFEST | 1 - rockspec.in | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index 280e510..7f95962 100644 --- a/MANIFEST +++ b/MANIFEST @@ -13,6 +13,5 @@ test/test_matrix.lua test/test_fit.lua test/test_complex.lua doc/complex_changelog.txt -doc/fit_changelog.txt doc/matrix_changelog.txt samples/fit.lua diff --git a/rockspec.in b/rockspec.in index c8a3084..7e9c519 100644 --- a/rockspec.in +++ b/rockspec.in @@ -26,7 +26,7 @@ build = { ["matrix"] = "lua/matrix.lua", } }, - copy_directories = {"doc", "samples", "tests"}, + copy_directories = {"doc", "samples", "test"}, } -- test: tests/test.lua -- _VERSION from lua/matrix.lua From 57b024108e55fef4737d0370073c2b0baaa5b224 Mon Sep 17 00:00:00 2001 From: David Heyman Date: Sat, 10 Dec 2016 20:40:39 -0500 Subject: [PATCH 2/2] Updated install method in README --- README.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.txt b/README.txt index a0c86b5..447ef84 100644 --- a/README.txt +++ b/README.txt @@ -11,7 +11,8 @@ as well as the test suite. To install, copy matrix.lua and complex.lua into your LUA_PATH. The modules can alternately be installed via LuaRocks ("luarocks install -luamatrix"). +luamatrix"). Or, run "./util.mk; cd tmp/*; luarocks make" from a local +clone. == Project Page ==