summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7da3493f6b44e6755f097d2755cf273b9dacf69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=theterminal
pkgver=2.1
pkgrel=1
pkgdesc="Simple Terminal Emulator"
arch=("x86_64")
url="https://github.com/vicr123/theterminal"
license=('GPL2')
depends=('xdg-utils' 'qtermwidget' 'qt5-base' 'qt5-x11extras' 'the-libs')
makedepends=('git')
source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/theterminal#branch=master')
md5sums=('SKIP')

build() {
	cd "$pkgname-$pkgver"
	qmake
	make
}

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