mirror of
https://github.com/minetest-mods/irc.git
synced 2024-11-05 09:40:20 +01:00
Merge branch 'master' of https://github.com/kaeza/minetest-irc
This commit is contained in:
commit
20490d746a
|
@ -1,4 +1,3 @@
|
|||
|
||||
IRC Mod for Minetest
|
||||
(C) 2012 Diego Martínez <kaeza@users.sf.net>
|
||||
|
||||
|
@ -20,6 +19,11 @@ For Unix-based systems, you should not have any problems with the C compiler
|
|||
ISO), since vanilla Puppy does not come with `gcc'. See your Puppy docs for
|
||||
more info about how to install additional SFS files.
|
||||
|
||||
Quick one line build for linux.
|
||||
|
||||
git clone https://github.com/kaeza/minetest-irc.git && cd minetest-irc && mkdir build && cd build && cmake .. && make && make pack_mod && cp -R irc <your mod directory>
|
||||
Plese change the "cp -R irc" to fit your install of minetest.
|
||||
|
||||
To compile and "pack" the mod:
|
||||
|
||||
- Open a command prompt/terminal and CD to the minetest-irc directory.
|
||||
|
|
23
TESTED_ON.txt
Normal file
23
TESTED_ON.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
This was successfully tested on the following systems and found to compile, install and work properly in minetest.
|
||||
|
||||
ArchLinx
|
||||
--------
|
||||
|
||||
GCC 4.7.2
|
||||
CMAKE 2.8.10.1
|
||||
|
||||
|
||||
Ubuntu 12.10
|
||||
------
|
||||
GCC 4.7.2-2ubuntu1
|
||||
CMAKE 2.8.9
|
||||
|
||||
|
||||
|
||||
Fails on:
|
||||
|
||||
LinuxMint
|
||||
---------
|
||||
|
||||
GCC 4.5.2
|
||||
CMAKE 2.8.3
|
|
@ -41,7 +41,7 @@ if (not mt_irc.server_nick) then
|
|||
end
|
||||
mt_irc.server = (mt_irc.server or "irc.freenode.net");
|
||||
mt_irc.port = (mt_irc.port or 6667);
|
||||
mt_irc.channel = (mt_irc.channel or "#minetest-irc-testing");
|
||||
mt_irc.channel = (mt_irc.channel or "#mtgamechatforservers");
|
||||
mt_irc.dtime = (mt_irc.dtime or 0.2);
|
||||
mt_irc.timeout = (mt_irc.timeout or 60.0);
|
||||
mt_irc.message_format_out = (mt_irc.message_format_out or "<$(nick)> $(message)");
|
||||
|
|
Loading…
Reference in New Issue
Block a user