blob: 99aa7389725a9f53eab66ec8309627dbbbf76031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
cat <<EOF >"dist/$1/README.txt"
alive $2
==========
https://alv.s-ol.nu
https://github.com/s-ol/alive
License
-------
alive is licensed under the GPLv3 free and open-source license, a copy of which
you can find in the file \`LICENSE\`.
This binary distribution of alive contains the Lua interpreter, LuaRocks package
manager, and a number of Lua modules licensed under various terms. Lua and
LuaRocks are both licensed under the MIT license. The packages can be found
within the \`lua\` directory while their individual licensing information may be
viewed using \`luarocks.bat\`:
cmd.exe> luarocks.bat list
cmd.exe> luarocks.bat show moonscript
cmd.exe> luarocks.bat show ...
EOF
|