You are not logged in.
pacman -S fluxbox-devel return a "not found in sync db" error. It's listed on this website as a pakage, what gives?
Offline
Add the unstable repo to pacman.conf.
Offline
If you want it even more bleeding edge, grab the SVN version! Here's a PKGBUILD:
# Maintainer: Lukas Sabota <punkrockguy318@comcast.net>
# Contributor: dibblethewrecker
pkgname=fluxbox-svn
pkgver=20050525
pkgrel=1
pkgdesc="Fluxbox-svn is the bleeding edge version of a lightweight yet customizable windowmanager for X."
url="http://www.fluxbox.org"
conflicts=('blackbox' 'fluxbox' 'fluxbox-devel' 'fluxbox-cvs')
replaces=('fluxbox-cvs')
provides=('fluxbox')
makedepends=('subversion')
build() {
cd $startdir/src
# Be sure to have a ~/.subversion. If it doesn't exist, touch it.
touch ~/.subversion
svn co svn://svn.berlios.de/fluxbox/trunk --config-dir ./ fluxbox
cd fluxbox
./autogen.sh
./configure --prefix=/usr --enable-kde --enable-xinerama
make || return 1
make prefix=$startdir/pkg/usr/ install
Just change the pkgver into the current date.
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline