summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c7f92ee01ff79c7ac82af9ef310e875ee3bf116 (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
26
27
28
# Maintainer: Alad Wenter <alad@mailbox.org>
pkgname=howm-x11
pkgver=0.5.1
pkgrel=3
pkgdesc='A lightweight, tiling X11 window manager that mimics vi by offering operators, motions and modes.'
arch=('i686' 'x86_64')
url='https://github.com/HarveyHunt/howm'
license=('GPL')
depends=('xcb-util-wm' 'sxhkd' 'cottage')
checkdepends=('linux-headers')
source=("$pkgname-$pkgver.tar.gz::https://github.com/HarveyHunt/howm/archive/$pkgver.tar.gz")
sha256sums=('0a790c7b67e19fac026e8abd3dca1d97f72ff25e8b6e84b03b5e246e58520181')

build() {
  cd "howm-$pkgver"
  make release
}

package() {
  cd "howm-$pkgver"
  mkdir -p "$pkgdir"/usr/{share/xsessions,bin/}
  make DESTDIR="$pkgdir/" install

  mkdir -p "$pkgdir"/usr/share/howm/examples
  cp -a examples/* "$pkgdir"/usr/share/howm/examples/
}

# vim:set ts=2 sw=2 et: