-
Notifications
You must be signed in to change notification settings - Fork 66
Building from source
Yarick Yermak edited this page May 2, 2020
·
13 revisions
Install ffpemg and mp4v2 using your favorite package manager or build it from source.
Install OpenJDK 14:
- using you favorite package manager or
- download and install manually from here https://jdk.java.net/14/ or
- follow instruction here https://computingforgeeks.com/how-to-install-java-14-on-ubuntu-debian/
Verify:
java -version
You should see:
openjdk version "14.0.1" 2020-04-14
Install maven:
- using your favourite package manager or
- download from here https://maven.apache.org/download.cgi
Verify:
mvn -V
You shou see:
Apache Maven 3.6.3
All versions 3.+ should work.
Install JavaFX mods:
- Downloads mods for your platform from here https://gluonhq.com/products/javafx/ and unpack them to some directory.
- Download source code or
- checkout it using git
git clone https://github.com/yermak/AudioBookConverter.git
cd AudioBookConverter
This is temporary step until ffmpeg-wrapper does not release version containing my patch (alterntatively you could build https://github.com/bramp/ffmpeg-cli-wrapper from source - master branch and install it)
mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file -Dfile=lib/ffmpeg-0.6.3-SNAPSHOT.jar
Actual build
mvn package
TO BE CONTINUED...