diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-28 16:53:19 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-28 16:53:19 +0100 |
commit | 01346da4de50d9eda2660653fcaae6c1abfaa28a (patch) | |
tree | bd7bb7e3f004777c788f809c5a5a10a69839be13 /community/evilwm/PKGBUILD | |
parent | 5bc312c4c7af74bbbb6042c5856bac6e53efa32c (diff) | |
parent | 1b9f6dc846379470b620b5dbb9d4d7acd1de148c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/fcitx-chewing/PKGBUILD
community/fcitx-cloudpinyin/PKGBUILD
community/fcitx-rime/PKGBUILD
community/linux-tools/PKGBUILD
community/lxpanel/PKGBUILD
community/pdns/PKGBUILD
core/bash/PKGBUILD
core/gcc/PKGBUILD
core/glibc/PKGBUILD
extra/json-c/PKGBUILD
extra/liblouis/PKGBUILD
extra/live-media/PKGBUILD
extra/samba/PKGBUILD
extra/transmission/PKGBUILD
social/opentracker/PKGBUILD
Diffstat (limited to 'community/evilwm/PKGBUILD')
-rw-r--r-- | community/evilwm/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/evilwm/PKGBUILD b/community/evilwm/PKGBUILD new file mode 100644 index 000000000..1ac5b6205 --- /dev/null +++ b/community/evilwm/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 83062 2013-01-27 09:45:44Z andrea $ +# Maintainer: Kevin Piche <kevin@archlinux.org> +# Contributor: Jochem Kossen <j.kossen@home.nl> + +pkgname=evilwm +pkgver=1.1.0 +pkgrel=1 +pkgdesc="A minimalist but usable window manager for the X Window System." +arch=('i686' 'x86_64') +url="http://evilwm.sourceforge.net" +license=('custom') +depends=('libxrandr') +source=(http://www.6809.org.uk/evilwm/$pkgname-$pkgver.tar.gz LICENSE) +md5sums=('5f14cc3019320860c85bb07c60a76bd7' + '0941ad3e96597ef75c6310f43a0342a0') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" desktopfilesdir=/usr/share/xsessions install + install -D -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} |