Skip to content

Commit 84d769b

Browse files
authored
Merge pull request #197 from carstene1ns/cosmetics
Some cosmetics + version 0.5.1
2 parents 11c8e19 + 579927b commit 84d769b

184 files changed

Lines changed: 2167 additions & 2142 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# autotools build method
33
/autom4te.cache/
44
/builds/autoconf/
5-
!/builds/autoconf/config.rpath
65
!/builds/autoconf/m4/m4_ax_pkg_check_modules.m4
76
/liblcf-*/
87
/tests/*.log
@@ -39,10 +38,6 @@ CMakeFiles/
3938
!/builds/cmake/Modules/Find*.cmake
4039
/builds/cmake/lib/
4140

42-
# qt build method
43-
/builds/qt/
44-
!/builds/qt/liblcf.pro
45-
4641
# doxygen generated files
4742
/doc/
4843

AUTHORS

Lines changed: 0 additions & 7 deletions
This file was deleted.

AUTHORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
liblcf authors
2+
==============
3+
4+
* Alejandro Marzini (vgvgf)
5+
* Gabriel Kind (Ghabry)
6+
* Glynn Clements (glynnc)
7+
* Paulo "Zhek" Vizcaino (paulo_v)

Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ACLOCAL_AMFLAGS = --install -I builds/autoconf/m4
2-
EXTRA_DIST = builds generator
2+
EXTRA_DIST = AUTHORS.md README.md builds generator
33
pkgconfigdir = ${libdir}/pkgconfig
44
pkgconfig_DATA = builds/liblcf.pc
55

@@ -112,12 +112,12 @@ pkginclude_HEADERS = \
112112
src/data.h \
113113
src/ini.h \
114114
src/inireader.h \
115+
src/lcf_options.h \
115116
src/ldb_reader.h \
116117
src/lmt_reader.h \
117118
src/lmu_reader.h \
118119
src/lsd_reader.h \
119120
src/reader_lcf.h \
120-
src/reader_options.h \
121121
src/reader_struct.h \
122122
src/reader_types.h \
123123
src/reader_util.h \

README

Lines changed: 0 additions & 100 deletions
This file was deleted.

README.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# liblcf
2+
3+
liblcf is a library to handle RPG Maker 2000 and 2003 game data.
4+
It can read and write LCF and XML files.
5+
6+
liblcf is part of the EasyRPG Project. More information is available
7+
at the project website: https://easyrpg.org/
8+
9+
10+
## Documentation
11+
12+
Documentation is available at the documentation wiki: https://wiki.easyrpg.org
13+
14+
15+
## Requirements
16+
17+
Expat for XML reading support.
18+
ICU for character encoding detection and conversion.
19+
20+
21+
## Source code
22+
23+
liblcf development is hosted by GitHub, project files are available
24+
in this git repository:
25+
26+
https://github.com/EasyRPG/liblcf
27+
28+
Released versions are also available at our Download Archive:
29+
30+
https://easyrpg.org/downloads/
31+
32+
33+
## Building
34+
35+
### Autotools Makefile method:
36+
37+
Building requirements:
38+
39+
- pkg-config
40+
- GNU make
41+
42+
Step-by-step instructions:
43+
44+
tar xf liblcf-0.5.1.tar.xz # unpack the tarball
45+
cd liblcf-0.5.1 # enter in the package directory
46+
./configure --prefix /usr # find libraries, set options
47+
make # compile the library
48+
sudo make install # install system-wide
49+
50+
Additional building requirements when using the source tree (git):
51+
52+
- autoconf >= 2.69
53+
- automake >= 1.11.4
54+
- libtool
55+
56+
To generate the "configure" script, run before following the above section:
57+
58+
autoreconf -i
59+
60+
Read more detailed instructions at:
61+
62+
* https://wiki.easyrpg.org/development/compiling/liblcf/autotools
63+
* https://wiki.easyrpg.org/development/compiling/liblcf/cmake
64+
65+
66+
## Bug reporting
67+
68+
Available options:
69+
70+
* File an issue at https://github.com/EasyRPG/liblcf/issues
71+
* Open a thread at https://community.easyrpg.org/
72+
* Chat with us via IRC: #easyrpg at irc.freenode.net
73+
74+
75+
## License
76+
77+
liblcf is Free/Libre Open Source Software, released under the MIT License.
78+
See the file COPYING for copying conditions.
79+
80+
### 3rd party software
81+
82+
liblcf code includes a copy of Boost Preprocessor Cat and Stringize
83+
(Boost Software License 1.0) and a copy of inih (New BSD license).
84+
See the source code comment headers for license details.

0 commit comments

Comments
 (0)