blob: 0d1dcc6c55a57a078de2e603f0d40502456e5eac (
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
28
|
# Maintainer: zhuangzhuang <xufengyuan20080802@outlook.com>
pkgname=piscesys-filemanager-git
_pkgname=piscesys-filemanager
pkgver=0.9
pkgrel=1
pkgdesc="piscesys File Manager, simple to use, beautiful, and retain the classic PC interactive design"
arch=('x86_64')
url="https://gitlab.com/piscesys/filemanager"
license=('GPL')
groups=('piscesys-git')
depends=('piscesys-fishui-git' 'kio' 'libpiscesys-git' 'solid')
makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools' 'git')
provides=("$_pkgname")
conflicts=("$_pkgname" "cutefish-filemanager-git")
source=("git+$url.git")
sha512sums=('SKIP')
build() {
cd filemanager
cmake -DCMAKE_piscesys_PREFIX=/usr .
make
}
package() {
cd filemanager
make DESTDIR="$pkgdir" install
}
|