Cross-platform advanced subtitle editor
Go to file
odrling bcbb306f39 update ffmpeg ffms2 2020-02-13 17:59:25 +01:00
.ci [ci] remove .exe at end of link [skip ci] 2019-10-16 00:04:36 +02:00
.nuget Move everything up a level since the root dir no longer has stuff 2014-03-11 12:14:57 -07:00
automation [automation] remove scripts that seem totally useless 2019-08-24 01:31:03 +02:00
build [ffmpeg] enable libvpx 2020-02-13 17:11:57 +01:00
docs Modify aegisub_convert_docs.pl to produce a static mirror suitable for serving on a web site 2012-09-03 17:26:49 -07:00
libaegisub Fix charset detection and conversion issues 2020-02-02 15:37:05 +01:00
m4macros added missing files (#57) 2018-04-29 12:59:48 -07:00
packages [windows] add Amaranth in installer 2019-10-15 19:20:13 +02:00
po [help] add joysound exporter item 2019-12-11 00:38:59 +01:00
src Merge branch 'master' of github.com:TypesettingTools/Aegisub 2020-02-08 22:11:06 +01:00
tests Makefiles: replace the use of subst macro with patsubst (#56) 2018-03-05 09:28:29 -08:00
tools [build] apply patch for lua 2019-08-20 01:52:21 +02:00
vendor update ffmpeg ffms2 2020-02-13 17:59:25 +01:00
.gitignore Add installer vendor folder to gitignore 2018-11-17 15:56:34 -05:00
.gitmodules [windows] add Amaranth in installer 2019-10-15 19:20:13 +02:00
Aegisub.sln Add Windows build through AppVeyor CI 2019-08-29 11:33:46 +02:00
LICENCE Move everything up a level since the root dir no longer has stuff 2014-03-11 12:14:57 -07:00
Makefile Remove the in-repo copy of the fontconfig config files 2014-06-24 09:06:32 -07:00
Makefile.inc.in [build] apply patch for lua 2019-08-20 01:52:21 +02:00
Makefile.target Bump minimum macOS version to 10.8 2017-07-04 12:31:55 -07:00
README.md [readme] add build status [skip ci] 2019-12-29 01:17:16 +01:00
acinclude.m4 Build: update boost m4 macros 2018-01-27 11:32:27 -08:00
appveyor.yml [ci] add openssl libs after building BuildTasks 2019-09-16 08:47:42 +02:00
autogen.sh Move everything up a level since the root dir no longer has stuff 2014-03-11 12:14:57 -07:00
config.guess Update config.sub, config.guess, install-sh (#77) 2018-09-23 20:19:33 -04:00
config.sub Update config.sub, config.guess, install-sh (#77) 2018-09-23 20:19:33 -04:00
configure.ac [build] set minimal boost version to 1.67.0 2019-10-16 14:32:06 +02:00
header.mk [build] apply patch for lua 2019-08-20 01:52:21 +02:00
install-sh Update config.sub, config.guess, install-sh (#77) 2018-09-23 20:19:33 -04:00

README.md

Aegisub-Japan7

Build status

Installation

The latest Windows build can be downloaded at https://mugen.karaokes.moe/downloads/aegisub-japan7/Aegisub-Japan7-latest-x64

A package is available on the AUR for Arch Linux users: aegisub-japan7

An ebuild is available for Gentoo users at https://git.odrling.xyz/odrling/odrling-overlay/src/branch/master/media-video/aegisub/aegisub-9999.ebuild

The default style uses the Amaranth font, which is installed by default when installing from the sources above.

Building Aegisub-Japan7

Windows

Prerequisites:

  1. Visual Studio 2017 (the free Community edition is good enough)
  2. The June 2010 DirectX SDK (the final release before DirectSound was dropped)
  3. Yasm installed to somewhere on your path.

There are a few optional dependencies:

  1. msgfmt, to build the translations
  2. WinRAR, to build the portable installer
  3. InnoSetup, to build the regular installer

All other dependencies are either stored in the repository or are included as submodules.

Building:

  1. Clone Aegisub's repository recursively to fetch it and all submodules: git clone --recursive git@github.com:Aegisub/Aegisub.git This will take quite a while and requires about 2.5 GB of disk space.
  2. Open Aegisub.sln
  3. Build the BuildTasks project.
  4. Build the entire solution.

You should now have a bin directory in your Aegisub directory which contains aegisub32d.exe, along with a pile of other files.

The Aegisub installer includes some files not built as part of Aegisub (such as Avisynth and VSFilter), so for a fully functional copy of Aegisub you now need to copy all of the files from an installed copy of Aegisub into your bin directory (and don't overwrite any of the files already there). You'll also either need to copy the automation directory into the bin directory, or edit your automation search paths to include the automation directory in the source tree.

After building the solution once, you'll want to switch to the Debug-MinDep configuration, which skips checking if the dependencies are out of date, as that takes a while.

OS X

A vaguely recent version of Xcode and the corresponding command-line tools are required. Nothing older than Xcode 5 has been tested recently, but it is likely that some later versions of Xcode 4 are good enough.

For personal usage, you can use homebrew to install almost all of Aegisub's dependencies:

brew install autoconf automake ffmpeg ffms2 fftw freetype fribidi gettext icu4c libass m4 pkg-config boost
brew install luajit --HEAD
brew link --force gettext
export LDFLAGS="-L/usr/local/opt/icu4c/lib"
export CPPFLAGS="-I/usr/local/opt/icu4c/include"
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"

wxWidgets is located in vendor/wxWidgets, and can be built like so:

CPPFLAGS="$CPPFLAGS -D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=1" \
./configure --disable-aboutdlg --disable-animatectrl --disable-aui --disable-any \
--disable-bannerwindow --disable-base64 --disable-calendar --disable-caret \
--disable-cmdline --disable-colourpicker --disable-compat28 --disable-config \
--disable-constraints --disable-datepick --disable-dctransform --disable-debugreport \
--disable-dialupman --disable-docview --disable-filehistory --disable-finddlg \
--disable-fs_archive --disable-fs_inet --disable-fs_zip --disable-fsvolume \
--disable-fswatcher --disable-gif --disable-help --disable-html --disable-ipc \
--disable-joystick --disable-jpeg --disable-largefile --disable-markup --disable-mdi \
--disable-mediactrl --disable-metafiles --disable-miniframe --disable-notifmsg \
--disable-numberdlg --disable-pcx --disable-pnm --disable-postscript \
--disable-prefseditor --disable-printarch --disable-progressdlg --disable-propgrid \
--disable-protocol --disable-protocols --disable-rearrangectrl --disable-ribbon \
--disable-richtext --disable-richtooltip --disable-snglinst --disable-sockets \
--disable-sockets --disable-sound --disable-splash --disable-splines \
--disable-std_iostreams --disable-svg --disable-tarstream --disable-tiff \
--disable-tipdlg --disable-tipwindow --disable-url --disable-webkit --disable-webview \
--disable-wizarddlg --disable-xrc \
--enable-geometry --enable-imaglist --enable-listctrl --enable-stc --with-cocoa \
--with-libpng=yes --with-macosx-version-min=10.9 \
--with-opengl \
--without-libjpeg --without-libtiff --without-regex \
&& make

Once the dependencies are installed, build Aegisub with autoreconf && ./configure --with-wxdir=/path/to/Aegisub/vendor/wxWidgets && make && make osx-bundle. autoreconf should be skipped if you are building from a source tarball rather than git.

Linux, BSD or Toasters

Install all the dependencies with the package manager of your distribution:

wxGTK
boost
icu
ffmpegsource
fontconfig
freetype
libass
zlib
libiconv
opengl
openal
openssl or libressl

Optional dependencies:

alsa-lib
fftw
openal
portaudio
pulseaudio
hunspell
luajit (can be bundled with your build)

Once all the dependencies are installed, run:

./autogen.sh
./configure
make -j$(nproc)

Updating Moonscript

From within the Moonscript repository, run bin/moon bin/splat.moon -l moonscript moonscript/ > bin/moonscript.lua. Open the newly created bin/moonscript.lua, and within it make the following changes:

  1. Prepend the final line of the file, package.preload["moonscript"](), with a return, producing return package.preload["moonscript"]().
  2. Within the function at package.preload['moonscript.base'], remove references to moon_loader, insert_loader, and remove_loader. This means removing their declarations, definitions, and entries in the returned table.
  3. Within the function at package.preload['moonscript'], remove the line _with_0.insert_loader().

The file is now ready for use, to be placed in automation/include within the Aegisub repo.

License

All files in this repository are licensed under various GPL-compatible BSD-style licenses; see LICENCE and the individual source files for more information. The official Windows and OS X builds are GPLv2 due to including fftw3.