summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 753d21e4d6af5ae60ec125347f0d4e5e583a3ae2 (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
# Contributor: Nikolai Klover <nick8klover@outlook.com>

pkgname=devilwm
pkgver=1.4.3
pkgrel=1
pkgdesc='Fork of devilwm that adds built-in application launcher support defaulted to dmenu.'
arch=('x86_64' 'i686')
url='https://github.com/catnipsta/devilwm'
license=('custom')
depends=(libxrandr
	 dmenu)
source=("git+https://github.com/catnipsta/devilwm.git"
        LICENSE)
sha256sums=(' '
'fc302a303187ffc836f9379d88f9fafc64b9bd30c8db31768cbfa491ea8e4d36')

build() {
  cd $pkgname
  make
}

package() {
  cd $pkgname
  make DESTDIR="$pkgdir" desktopfilesdir=/usr/share/xsessions install
  install -D -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}