Ruby GTK3移行後のメインリポジトリ
Revision | 6084d396bfd13f488493401e0119925698a1102e (tree) |
---|---|
Time | 2018-07-07 18:44:41 |
Author | Yasuhiro KIMURA <yasu@utah...> |
Commiter | Yasuhiro KIMURA |
add README.en
@@ -0,0 +1,143 @@ | ||
1 | +-------------------------- | |
2 | +ninix-aya(Function extended version of ninix) | |
3 | +-------------------------- | |
4 | + | |
5 | +What is this? | |
6 | +---------- | |
7 | +Ninix-aya ,once known as 'AYA compatible modules and so forth for | |
8 | +ninix', is a functionally extended fork of desktop accessory | |
9 | +application 'ninix' that runs on Unix OSes. | |
10 | +It also includes improvements and bug fixes not included in the | |
11 | +original ninix. | |
12 | +Now it runs not only on Unix OSes but also on Windows. | |
13 | +After version 4.500.x (i.e. 5.x series) it switched to use Ruby. | |
14 | + | |
15 | +What are necessary to ruy ninix-aya? | |
16 | +---------- | |
17 | +Following softwares are necessary to run ninix-aya. | |
18 | +It may not work properly if you use older version than confirmed one. | |
19 | + | |
20 | +- Ruby (http://www.ruby-lang.org/) | |
21 | + Language used to develope and run this software. | |
22 | + We have confirmed the operation with version 2.3.3.. | |
23 | + * Please install Ruby Installer and Devkit on Windows. | |
24 | + | |
25 | +- NArray(http://masa16.github.io/narray/) | |
26 | + Ruby class library that makes it easy and fast to compute | |
27 | + large-scale multidimensional numerical arrays. | |
28 | + We have confirmed the operation with version 0.6.1.1. | |
29 | + | |
30 | +- Ruby/GTK3 (http://ruby-gnome2.osdn.jp/) | |
31 | + Set of Ruby language bindings for the GNOME development environment. | |
32 | + We have confirmed the operation with version 3.1.8. | |
33 | + | |
34 | +- GTK+ (http://www.gtk.org/) | |
35 | + Multi-platform toolkit for creating graphical user interfaces. | |
36 | + We have confirmed the operation with version 3.22.18. | |
37 | + Version 3.22 or later is mandatory. | |
38 | + | |
39 | +- Ruby/GStreamer (http://ruby-gnome2.osdn.jp/) | |
40 | + This software is not mandatory for ninix-aya to run. | |
41 | + Used to play back audio files. | |
42 | + We have confirmed the operation with version 3.1.8. | |
43 | + | |
44 | +- GStreamer (http://gstreamer.freedesktop.org/) | |
45 | + This software is not mandatory for ninix-aya to run. | |
46 | + Used to play back audio files. | |
47 | + We have confirmed the operation with version 1.12.2. | |
48 | + | |
49 | +- Rubyzip(https://github.com/rubyzip/rubyzip) | |
50 | + Ruby library for reading and writing zip files. | |
51 | + We have confirmed the operation with version 1.2.1. | |
52 | + | |
53 | +- Ruby gettext(http://ruby-gettext.github.io/) | |
54 | + Ruby library and tools for localization. | |
55 | + We have confirmed the operation with version 3.2.2. | |
56 | + | |
57 | +- CharlockHolmes (http://github.com/brianmario/charlock_holmes) | |
58 | + This software is not mandatory for ninix-aya to run. | |
59 | + Necessary if you would like to run 'ghost' which uses 'MISAKA' | |
60 | + library and whose encoding is not Shift-JIS. | |
61 | + We have confirmed the operation with version 0.7.3. | |
62 | + | |
63 | +Installation | |
64 | +------------ | |
65 | +For Linux distributions such as Debian, we recommend to use offical | |
66 | +package. | |
67 | + | |
68 | +In following sentences we explain how to install from the source | |
69 | +archive. And we assume Unix OS. | |
70 | + | |
71 | +Download source archive of latest version and extract it. | |
72 | + | |
73 | +There are items in Makefile that specifies following settings. | |
74 | + | |
75 | +* Global installation destination directory (prefix) | |
76 | +* Installation destination directory of files for localization | |
77 | + (localedir) | |
78 | +* Path for SHIORI .so files such as KAWARI8 and YAYA (shiori_so_dir) | |
79 | +* And so on | |
80 | + | |
81 | +Modify them according to your environment. | |
82 | + | |
83 | +Then installation will be completed if you execute 'make install' as | |
84 | +following. | |
85 | + | |
86 | +# make install | |
87 | + | |
88 | +Script to execute ninix-aya is installed. So execute it. | |
89 | + | |
90 | +$ ninix | |
91 | + | |
92 | +On Windows environment extract source archive and execute | |
93 | +lib/ninix_main.rb with Ruby interpreter. | |
94 | + | |
95 | +* Steps to install required library by using 'gem'. | |
96 | + (You need to install DevKit in advance) | |
97 | + gem install narray | |
98 | + gem install gtk3 | |
99 | + gem install gstreamer | |
100 | + gem install gettext | |
101 | + gem install rubyzip | |
102 | + | |
103 | +License | |
104 | +---------- | |
105 | +Copyright (C) 2001, 2002 by Tamito KAJIYAMA <kajiyama3@geocities.co.jp> | |
106 | +Copyright (C) 2002-2007 by MATSUMURA Namihiko <nie@counterghost.net> | |
107 | +Copyright (C) 2002-2018 by Shyouzou Sugitani <shy@users.osdn.me> | |
108 | +Copyright (C) 2002, 2003 by ABE Hideaki <abe-xx@eos.dricas.com> | |
109 | +Copyright (C) 2003-2005 by Shun-ichi TAHARA <jado@flowernet.gr.jp> | |
110 | + | |
111 | +This program is free software; you can redistribute it and/or modify it | |
112 | +under the terms of the GNU General Public License (version 2) as | |
113 | +published by the Free Software Foundation. It is distributed in the | |
114 | +hope that it will be useful, but WITHOUT ANY WARRANTY; without even the | |
115 | +implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | |
116 | +PURPOSE. See the GNU General Public License for more details. | |
117 | + | |
118 | +Contact Information. | |
119 | +------ | |
120 | +This software is developed and distruted by Shyouzou Sugitani and | |
121 | +MATSUMURA Namihiko (a.k.a. Sakura No Nie). | |
122 | +Mail addresses are | |
123 | + | |
124 | +Shyouzou Sugitani <shy@users.osdn.me> | |
125 | +MATSUMURA Namihiko <nie@counterghost.net> | |
126 | + | |
127 | +Or access forums of http://osdn.jp/projects/ninix-aya/ | |
128 | +(There are part of old developement informations at | |
129 | +http://nie.counterghost.net/) | |
130 | + | |
131 | +Links | |
132 | +------ | |
133 | +Home page of Are Igai No Nanika with 'Nin-i' (Something other than | |
134 | +that with 'ANY') - Ninix distribution site | |
135 | +http://www.geocities.co.jp/SiliconValley-Cupertino/7565/ | |
136 | + | |
137 | +Home page of ninix-aya developement projcet | |
138 | +http://ninix-aya.osdn.jp/ | |
139 | + | |
140 | +Ninix-aya distribution site | |
141 | +http://osdn.jp/projects/ninix-aya/ | |
142 | + | |
143 | +Concluded. |