Index of /assseq/downloads/linux/linux-version-0.4

Icon  Name                                 Last modified      Size  Description
[PARENTDIR] Parent Directory - [   ] assseq.install.run 2019-11-07 11:23 3.8M [   ] assseq.tgz 2019-11-07 11:26 3.7M [DIR] assseq/ 2019-11-07 11:29 - [TXT] install.readme.txt 2019-11-07 11:26 2.0K
Install:

---------- SIMPLEST ------------

download the installer from http://ormbunkar.se/downloads/linux and run:

assseq.install.run

(this is a executable archive that will copy files to /usr/bin/ and /usr/share/assseq/,
and will also install a .desktop link to the start-menu on compatible systems)

- after downloading you will likely need to change the execution rights of the install file:
chmod +x assseq.install.run

- install by issuing command:
sudo ./assseq.install.run
(most likely you need to sudo the installation, if you don't have super user rights to the system see below)

- start the program with command:
assseq (this is a sh-script that will execute java -jar assseq.jar)

-----*** ALTERNATIVE (as non super-user) ***-----

1. Download the archive assseq.tgz from http://ormbunkar.se/assseq/downloads/linux/ and extract it into a folder of your choice
2. Run program from this folder by issuing command ./assseq from the terminal
   (this is a sh-script that will execute command java -jar assseq.jar)

NOTE: If you are running Linux, consider upgrading to Java 8 or Java 9, there is a significant improvement in drawing speed
since it is using Linux built in XRender.
Installation is very simple (1 minute) - http://ormbunkar.se/assseq/#java8install

-----INSTALL FROM SOURCE -----

Procedure below requires root (`sudo`) access.
Tested on 64 bit Xubuntu 17.10 with Oracle java
version 1.8.0_72, and Apache Maven v.3.5.0.

1. Install Oracle Java 8

        sudo add-apt-repository ppa:webupd8team/java
        sudo apt update
        sudo apt install oracle-java8-installer

2. Install Apache Maven

        sudo apt install maven

3. Install makeself

        sudo apt install makeself

4. Build, package, create installer and install Assseq

        git clone https://github.com/andersla/Assseq.git
        cd Assseq
        mvn clean compile install package | tee mvn.build.log
        ./make_installer_linux.sh
        cd target/linux-version-*
        sudo ./assseq.install.run