summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72199eff14c4f5e62029a0a6babe4f0183a16b77 (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=3.1.1
pkgrel=2
pkgdesc="A tiny term for minimalists"
arch=('x86_64')
url="https://github.com/endaaman/tym"
license=('MIT')
depends=('vte3' 'lua53')
source=("https://github.com/endaaman/${pkgname}/releases/download/$pkgver/${pkgname}-$pkgver.tar.gz")
sha1sums=('09aac9c5d46037386f8670c0c8626cd2cf2dddd3')
build() {
	cd "$pkgname-$pkgver"
	./configure --prefix=/usr
	make
}

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