Install

ITS Tool uses the standard GNU build chain.

  1. Download itstool, either from the git repository, or a package release.

  2. If you cloned the git repository, you first need to run autogen.sh to create the configure script:

    ./autogen.sh
  3. Run the configure script:

    ./configure
    • By default, configure installs packages to /usr/local. If you prefer to install to /usr, pass the --prefix option:

      ./configure --prefix=/usr
  4. Run make:

    make
  5. As root, run make install:

    su -c 'make install'

    Or, on systems that use sudo:

    sudo make install