summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1a55749a8f294f6e4d6d0b521b16c4751abbd389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Ken Enda <buhibuhidog@gmail.com>

pkgname=tym
pkgver=2.1.0
pkgrel=1
pkgdesc="A tiny term for minimalists"
arch=('x86_64')
url="https://github.com/endaaman/tym"
license=('MIT')
depends=('vte3' 'lua' 'dbus-glib')
source=("https://github.com/endaaman/${pkgname}/releases/download/$pkgver/${pkgname}-$pkgver.tar.gz")
sha1sums=('d3b4b9f6511dc2e8a0b82d555ac53cac3529b866')
build() {
	cd "$pkgname-$pkgver"
	./configure --prefix=/usr
	make
}

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