Installation

General

The most recent code can be pulled from git. The included Makefile will use any PREFIX or DESTDIR variables passed to it for installation. The default's are shown below but `sudo make install` would be sufficient to use these defaults.

Alopex depends on libxinerama and cairo and all of their dependencies. If you are using a distro that splits development packages, you'll need the *-dev libraries as well in order to build alopex.

git clone http://github.com/TrilbyWhite/alopex.git
cd alopex
make
sudo make PREFIX=/usr DESTDIR=/ install

Arch Linux

The PKGBUILD in the AUR is for version 2.0. Version 4.0 will be uploaded after a bit more testing. For now, the following package build will get the most up to date code.

# Maintainer: Jesse McClure AKA "Trilby" <jmcclure [at] cns [dot] umass [dot] edu>
_gitname="alopex"
pkgname="${_gitname}-git"
pkgver=4.387.0c62077
pkgrel=1
pkgdesc="A Tabbed, Tiling Window Manager with Fur"
url="http://trilbywhite.github.io/alopex/"
arch=('x86_64' 'i686')
license=('GPL3')
depends=('libxinerama' 'cairo')
makedepends=('git')
source=("${_gitname}::git://github.com/TrilbyWhite/alopex.git")
sha256sums=('SKIP')

pkgver() {
	cd "${_gitname}";
	echo "4.$(git rev-list --count HEAD).$(git describe --always )"
}

build() {
	cd "${_gitname}"
	make
}

package() {
	cd "${_gitname}"
	make PREFIX=/usr DESTDIR="${pkgdir}" install
}

Other Distros

I will happily host any build scripts for other distros if/when they are submitted to the email address below.