summaryrefslogtreecommitdiff
path: root/community/lwm/PKGBUILD
blob: 015928b5392a98b78acbd711121b0ad22d37ebf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id: PKGBUILD 6621 2009-12-18 08:13:19Z giovanni $
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Jeff Mickey <j@codemac.net>
# Contributor: Ben Mazer <blm@groknil.org>

pkgname=lwm
pkgver=1.2.2
pkgrel=1
pkgdesc="a very light weight window manager"
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.jfc.org.uk/software/lwm.html"
depends=('xorg-server')
makedepends=('imake')
source=(http://www.jfc.org.uk/files/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('1748722a293e03d632b615275ef84498')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  xmkmf
  make || return 1
  strip lwm
  install -Dm755 lwm ${pkgdir}/usr/bin/lwm
  install -Dm644 lwm.man ${pkgdir}/usr/share/man/man1/lwm.1
}