Skip to content

Installation in Arch Linux

Dario Giovannetti edited this page Nov 22, 2014 · 4 revisions

To install Outspline in Arch Linux you must download it from the AUR and build it; you can either use an AUR helper or follow the manual procedure.

The AUR pages for the various components are:

There are also some optional dependencies from the official repositories that add some functionality.

AUR helper

You can make use of an AUR helper to automate the installation procedure. For example, using yaourt, simply run:

$ yaourt outspline

Similarly, to install an additional component:

$ yaourt outspline-extra

Manual build

To build and install Outspline manually, first change directory to a safe workspace:

$ cd Desktop

Then download the required package from the AUR:

$ curl -LO https://aur.archlinux.org/packages/ou/outspline/outspline.tar.gz

Now extract the package and access its contents:

$ tar xzf outspline.tar.gz
$ cd outspline

Finally install the application:

$ makepkg -si

To install additional components, the procedure is of course the same:

$ curl -LO https://aur.archlinux.org/packages/ou/outspline-extra/outspline-extra.tar.gz
$ tar xzf outspline-extra.tar.gz
$ cd outspline-extra
$ makepkg -si

See Arch User Repository for more information.

Optional dependencies

To prevent opening multiple instances with the same configuration file you will need python2-dbus and dbus-glib.

To receive desktop notifications for alarms (trhough the notify plugin), you will need libnotify and python2-gobject.

To install all these dependencies, simply run:

$ sudo pacman -S python2-dbus dbus-glib libnotify python2-gobject
Clone this wiki locally