summaryrefslogtreecommitdiff
path: root/community/lwm/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/lwm/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/lwm/PKGBUILD')
-rw-r--r--community/lwm/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/lwm/PKGBUILD b/community/lwm/PKGBUILD
new file mode 100644
index 000000000..015928b53
--- /dev/null
+++ b/community/lwm/PKGBUILD
@@ -0,0 +1,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
+}