summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88afe758cfd8e59e4307e30fee51f50727b5fa9f (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=thedm
pkgver=0.2
pkgrel=0
pkgdesc="Display Manager"
arch=("x86_64")
url="https://github.com/vicr123/thedm"
license=('GPL3')
depends=('xdg-utils' 'qt5-base' 'qtermwidget' 'the-libs' 'qt5-svg')
makedepends=('git')
source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/thedm.git#branch=rewrite')
md5sums=('SKIP')

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

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