# Maintainer: Jaromir Capik <tavvva@email.cz>

pkgname=fluxbox
pkgver=1.0.0
pkgrel=1
pkgdesc="A lightweight and highly-configurable window manager"
url="http://www.fluxbox.org"
license=('MIT')
depends=('xclients' 'libxpm' 'libxrandr' 'gcc' 'fribidi')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  ./configure --prefix=/usr \
    --enable-xft --disable-xinerama \
    --disable-imlib2 --disable-nls \
    --with-x --enable-xpm --enable-xmb \
    --host=$CHOST --build=$CHOST

  make
  make DESTDIR="${pkgdir}" install
}

md5sums=('1f389177e17cd1e8dbed07c80812961f')
