summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5bcd324d7f31ca069e173965f87cc71435b3825c (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
# Maintainer: Victor Tran <vicr12345 at gmail dot com>

pkgname=tttermwidget
pkgver=1.0
pkgrel=1
pkgdesc="Terminal widget used by theTerminal"
arch=("i686" "x86_64")
url="https://github.com/vicr123/tttermwidget"
license=("GPL2")
depends=("qt5-base" "libsm" "libxkbcommon-x11" "libutf8proc" "the-libs")
source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/tttermwidget')
md5sums=("SKIP")

build() {
	mkdir -p build
	cd build
	qmake $srcdir/$pkgname-$pkgver/tttermwidget.pro
	make
}

package() {
	cd build
	make INSTALL_ROOT="$pkgdir" install
}