mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
753 B
Bash
23 lines
753 B
Bash
# Maintainer: Kevin Piche <kevin@archlinux.org>
|
|
# Contributor: Jochem Kossen <j.kossen@home.nl>
|
|
|
|
pkgname=evilwm
|
|
pkgver=1.0.1
|
|
pkgrel=1
|
|
pkgdesc="A minimalist but usable window manager for the X Window System."
|
|
arch=('arm')
|
|
depends=('libxrandr')
|
|
url="http://evilwm.sourceforge.net"
|
|
source=(http://www.6809.org.uk/evilwm/$pkgname-$pkgver.tar.gz evilwm.desktop)
|
|
license=(custom)
|
|
md5sums=('8fd9256c635cce2289b648a01d54202c'
|
|
'fd404c0f0787fbf99b8b3270f639128c')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
/usr/bin/make || return 1
|
|
/usr/bin/make DESTDIR=$startdir/pkg install
|
|
install -D -m644 $startdir/evilwm.desktop \
|
|
$startdir/pkg/etc/X11/sessions/evilwm.desktop
|
|
install -D -m644 README $startdir/pkg/usr/share/licenses/$pkgname/README
|
|
}
|