summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8db51322a115d8b24b9a9b547911d52d012da730 (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.2
pkgrel=1
arch=('any')
url="https://github.com/KeyLo99/k3rmit"
license=('GPL3')
depends=('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="$pkgdir" install
}