summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 71dfa451615135747b614582bd2e35fae1f6ddcd (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
25
26
27
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=thedesk-xdg-utils
pkgver=beta1
pkgrel=0
pkgdesc=""
arch=("x86_64")
url="https://github.com/vicr123/the24"
license=('GPL3')
depends=('qt5-base' 'qt5-svg' 'the-libs' 'libtdesktopenvironment')
makedepends=('qt5-tools')
source=("$pkgname-$pkgver"::"https://github.com/vicr123/thedesk-xdg-utils/archive/refs/tags/beta1.tar.gz")
sha256sums=('348f9378acc9035e1f04ea8962de482a092c7c578c7dd9fcf2f03e3581652a32')

build() {
    cd "$pkgname-$pkgver"

    mkdir build
    cd build
    
    qmake ..
    make
}

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