mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-21 21:52:04 +02:00
Update make_apping.sh
This commit is contained in:
parent
27af617ca8
commit
9befe2b199
2 changed files with 4 additions and 8 deletions
|
@ -1,21 +1,16 @@
|
|||
# mkxp-z
|
||||
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
This is a fork of mkxp that is intended to run and alleviate the difficulty of porting games based on Pokemon Essentials. It's not necessarily intended to be a byte-for-byte copy of RGSS though, so non-standard extensions and optional enhancements can/will be written for fangame developers (you poor souls) to take advantage of.
|
||||
|
||||
## Bindings
|
||||
Bindings provide the glue code for an interpreted language environment to run game scripts in. mkxp-z focuses on Ruby 1.8 and as such the mruby and null bindings are not included. The original MRI bindings remain for the time being, with the possible intent of working with >=1.9 to better support RGSS3. Please see the original README for more details.
|
||||
Bindings provide the glue code for an interpreted language environment to run game scripts in. mkxp-z focuses on MRI and as such the mruby and null bindings are not included. The original MRI bindings remain. Please see the original README for more details.
|
||||
|
||||
### MRI
|
||||
Website: https://www.ruby-lang.org/en/
|
||||
|
||||
Matz's Ruby Interpreter, also called CRuby, is the most widely deployed version of ruby. MRI 1.8.1 is what was used in RPG Maker XP, and 1.8.7 is what mkxp-z is written around (at least for now). 1.8.1 and 1.8.7 are for the most part identical, though there are a few differences that need to be ironed out before Essentials can be loaded.
|
||||
Matz's Ruby Interpreter, also called CRuby, is the most widely deployed version of ruby. MRI 1.8.1 is what was used in RPG Maker XP, and 1.8.7 is the lowest that mkxp-z is prepared to let you go. 1.8.1 and 1.8.7 are for the most part identical, though there are a few differences that need to be ironed out before Essentials can be loaded (and are dealt with in my fork of 1.8.7).
|
||||
|
||||
This binding should support RGSS1, RGSS2 and RGSS3, though I've only tested it with RGSS1.
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@ mkdir -p ${MESON_INSTALL_PREFIX}/usr/lib
|
|||
|
||||
|
||||
# Required by Ubuntu
|
||||
get_dep boost_program_options
|
||||
get_dep openal
|
||||
get_dep physfs
|
||||
get_dep SDL2-2.0
|
||||
|
@ -23,6 +22,8 @@ get_dep ruby
|
|||
get_dep sndio
|
||||
get_dep readline
|
||||
get_dep tinfo
|
||||
get_dep objfw
|
||||
get_dep objfwrt
|
||||
|
||||
# Required by Fedora & Manjaro
|
||||
get_dep libXss
|
||||
|
|
Loading…
Add table
Reference in a new issue