summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 95320de874a2a3591e1a01e0dce0f36f80007689 (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: KeyLo99 <keylo99official@gmail.com>
pkg=k3rmit
pkgname=k3rmit-git
pkgdesc="A VTE-based terminal emulator that aims to be simple, fast and effective."
pkgver=1.0
pkgrel=1
arch=('any')
url="https://github.com/KeyLo99/k3rmit"
license=('GPL3')
depends=('git' 'gtk3>=3.18.9' 'vte3>=0.42.5')
makedepends=('cmake')
source=('git://github.com/KeyLo99/k3rmit.git')
sha256sums=('SKIP')

build() {
  mkdir -p "$pkg/build"
  cd "$pkg/build"
  cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd "$pkg/build"
  make DESTDIR="$pkg" install
}