summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6537eba033ddb71276b3418e377d9094d07926c5 (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: orhun <github.com/orhun>
pkgname=k3rmit
pkgdesc="A VTE-based terminal emulator that aims to be simple, fast and effective."
pkgver=1.9
pkgrel=1
arch=('any')
url="https://github.com/orhun/k3rmit"
license=('GPL3')
depends=('gtk3>=3.18.9' 'vte3>=0.42.5')
makedepends=('cmake')
provides=("$pkgname")
conflicts=("$pkgname")
source=('https://github.com/orhun/k3rmit/archive/1.9.tar.gz')
sha256sums=('SKIP')

build() {
  cd $pkgname-$pkgver
  mkdir -p build && cd build/
  cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
}

package() {
  cd "$pkgname-$pkgver/build"
  make DESTDIR="$pkgdir" install
}