WIP: Nemerle
This commit is contained in:
parent
3b5dd79799
commit
7b5dd969ac
|
@ -2311,6 +2311,15 @@ message:
|
||||||
compile: "nekoc main.neko",
|
compile: "nekoc main.neko",
|
||||||
run: "neko main",
|
run: "neko main",
|
||||||
template: `$print("Hello, world!\\n");
|
template: `$print("Hello, world!\\n");
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
nemerle: {
|
||||||
|
aliases: ["ncc", "n"],
|
||||||
|
name: "Nemerle",
|
||||||
|
main: "main.n",
|
||||||
|
compile: "mono /opt/nemerle/ncc.exe main.n",
|
||||||
|
run: "mono main.exe",
|
||||||
|
template: `System.Console.WriteLine("Hello, world!");
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
nickle: {
|
nickle: {
|
||||||
|
|
|
@ -257,6 +257,12 @@ mv mariadb-*-linux-x86_64/* /opt/mariadb/
|
||||||
chmod a=rx,u=rwx /opt/mariadb/lib/plugin/auth_pam_tool_dir
|
chmod a=rx,u=rwx /opt/mariadb/lib/plugin/auth_pam_tool_dir
|
||||||
chmod a=rx,u=rwxs /opt/mariadb/lib/plugin/auth_pam_tool_dir/auth_pam_tool
|
chmod a=rx,u=rwxs /opt/mariadb/lib/plugin/auth_pam_tool_dir/auth_pam_tool
|
||||||
|
|
||||||
|
# Nemerle
|
||||||
|
file="$(curl -sSL http://nemerle.org/Downloads | grep -Eo 'NemerleBinaries[^"]+' | head -n1)"
|
||||||
|
wget -nv "http://nemerle.org/Download/Nightly%20master-NET40-VS2010/build-283/${file}"
|
||||||
|
unzip -d /opt/nemerle NemerleBinaries-net-*.zip
|
||||||
|
rm NemerleBinaries-net-*.zip
|
||||||
|
|
||||||
# Omgrofl
|
# Omgrofl
|
||||||
ver="$(latest_release OlegSmelov/omgrofl-interpreter)"
|
ver="$(latest_release OlegSmelov/omgrofl-interpreter)"
|
||||||
mkdir /opt/omgrofl
|
mkdir /opt/omgrofl
|
||||||
|
|
Loading…
Reference in New Issue