summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a0ff3c9c37e7f9ab2e603e0008691fdb5dcbc77f (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
# Maintainer: Lex Black <autumn-wind@web.de>

pkgname=havoc
pkgver=0.3.1
pkgrel=1
pkgdesc='minimal terminal emulator for Wayland on Linux.'
arch=(x86_64)
url='https://github.com/ii8/havoc'
license=('MIT' 'custom')
depends=('wayland')
makedepends=('wayland-protocols')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/ii8/havoc/archive/${pkgver}.tar.gz)
md5sums=('080ae7dd9f60ba9c1ac6e3230408ffbf')


build() {
  cd ${pkgname}-${pkgver}
  make PREFIX=/usr
}

package() {
  cd ${pkgname}-${pkgver}
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  make PREFIX=/usr DESTDIR="${pkgdir}" install
}