summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b226463c20129b2d4853e6cba6e46e367f16c6e5 (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
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=thefile
pkgver=4.0.2
pkgrel=0
pkgdesc="File Manager"
arch=("x86_64")
url="https://github.com/vicr123/thefile"
license=('GPL3')
depends=('xdg-utils' 'qt5-base' 'the-libs' 'libtdesktopenvironment' 'libthefrisbee' 'qt5-svg')
makedepends=('git' 'qt5-tools')
source=("git+https://github.com/vicr123/thefile#tag=v$pkgver")
sha256sums=('SKIP')

build() {
	cd thefile
	mkdir -p build
	cd build
	qmake ../theFile.pro
	make
}

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