diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2015-12-01 21:20:32 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2015-12-06 02:38:24 (GMT) |
commit | ab3635cbd57253dfd40d679f01ef2c4c60116e6b (patch) | |
tree | 769473c06f679fb7896e3e72783958adaf5e734f /plugins/luarocks | |
parent | e8d80521922f1dfa689f71df53b37de4a014c88f (diff) | |
download | mxe-ab3635cbd57253dfd40d679f01ef2c4c60116e6b.zip mxe-ab3635cbd57253dfd40d679f01ef2c4c60116e6b.tar.gz mxe-ab3635cbd57253dfd40d679f01ef2c4c60116e6b.tar.bz2 |
remove virtual package all-rocks
> There's also now an automatic all-<plugin> target which is the
> last segment of the plugin path. all-rocks.mk can be removed
> and make all-luarocks MXE_PLUGIN_DIRS=plugins/luarocks ...
> will work.
See #1017
Diffstat (limited to 'plugins/luarocks')
-rw-r--r-- | plugins/luarocks/README.md | 2 | ||||
-rw-r--r-- | plugins/luarocks/all-rocks.mk | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/plugins/luarocks/README.md b/plugins/luarocks/README.md index 4471e9b..61b4656 100644 --- a/plugins/luarocks/README.md +++ b/plugins/luarocks/README.md @@ -73,7 +73,7 @@ installer and Lua library (it installs Lua files to Build all rocks: ``` -$ make all-rocks MXE_PLUGIN_DIRS=plugins/luarocks MXE_TARGETS='i686-w64-mingw32.shared x86_64-w64-mingw32.shared' +$ make all-luarocks MXE_PLUGIN_DIRS=plugins/luarocks MXE_TARGETS='i686-w64-mingw32.shared x86_64-w64-mingw32.shared' ``` Run tests (requires wine): diff --git a/plugins/luarocks/all-rocks.mk b/plugins/luarocks/all-rocks.mk deleted file mode 100644 index a3e6d14..0000000 --- a/plugins/luarocks/all-rocks.mk +++ /dev/null @@ -1,7 +0,0 @@ -# This file is part of MXE. -# See index.html for further information. - -PKG := all-rocks -$(PKG)_WEBSITE := https://luarocks.org/ -$(PKG)_OWNER := https://github.com/starius -$(PKG)_DEPS := lpeg luasocket llthreads2 lua-rapidjson |