You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-7
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,18 @@
4
4
5
5
For binaries and general information [see the homepage](http://www.aegisub.org).
6
6
7
-
The bug tracker can be found at http://devel.aegisub.org.
7
+
The bug tracker can be found at https://github.com/Aegisub/Aegisub/issues.
8
8
9
-
Support is available on [the forums](http://forum.aegisub.org) or [on IRC](irc://irc.rizon.net/aegisub).
9
+
Support is available on IRC ( irc://irc.rizon.net/aegisub).
10
10
11
11
## Building Aegisub
12
12
13
13
Prerequisites:
14
14
15
15
1. CMake 3.14 or later (or you can use an older version by editing the first line in CMakeLists.txt, and download the missing `cmake/FindFontconfig.cmake` from [here](https://gitlab.kitware.com/cmake/cmake/blob/master/Modules/FindFontconfig.cmake)),
16
16
2. Any compiling toolchain supported by CMake,
17
-
3. All required dependencies, namely `libass`, `Boost`(with ICU support), `OpenGL`, `Hunspell`, `libicu`, `wxWidgets`, `zlib`. On non-POSIX systems, `libiconv`. On non-Windows systems, `fontconfig`.
18
-
4. Any optional dependencies, namely `ALSA`, `FFMS2`, `FFTW`, `OpenAL`, `uchardet`.
17
+
3. All required dependencies, namely `libass`, `Boost`(with ICU support), `OpenGL`, `libicu`, `wxWidgets`, `zlib`. Additionally, `libiconv` is required on non-POSIX systems. `fontconfig` is required on non-Windows systems.
@@ -25,8 +25,16 @@ git clone https://github.com/wangqr/Aegisub.git # No --recursive is needed
25
25
cd Aegisub
26
26
./build/version.sh .# This will generate build/git_version.h
27
27
```
28
-
2. Make an empty directory to hold build outputs,
29
-
3. Build the project using CMake.
28
+
2. Make an empty directory to hold build outputs:
29
+
```shell
30
+
mkdir build-dir
31
+
```
32
+
3. Build the project using CMake. Use either cmake-gui, or the command line:
33
+
```shell
34
+
cd build-dir
35
+
cmake ..
36
+
make
37
+
```
30
38
31
39
## Updating Moonscript
32
40
@@ -42,4 +50,4 @@ The file is now ready for use, to be placed in `automation/include` within the A
42
50
## License
43
51
44
52
All files in this repository are licensed under various GPL-compatible BSD-style licenses; see LICENCE and the individual source files for more information.
45
-
The official Windows and OS X builds are GPLv2 due to including fftw3.
53
+
The official Windows build is GPLv2 due to including fftw3.
0 commit comments