blob: 0c63dcaf196321b64e21e49f98900397759f657b (
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
|
pkgname=piscesys-dock-git
_pkgname=piscesys-dock
pkgver=0.9
pkgrel=1
pkgdesc="piscesys application dock"
arch=('x86_64')
url="https://gitlab.com/piscesys/dock"
license=('GPL')
depends=('piscesys-fishui-git' 'libpiscesys-git' 'qt5-svg')
makedepends=('extra-cmake-modules' 'qt5-tools' 'git')
provides=("$_pkgname")
conflicts=("$_pkgname" "cutefish-dock-git")
source=("git+$url.git")
sha512sums=('SKIP')
build() {
cd dock
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make
}
package() {
cd dock
make DESTDIR="$pkgdir" install
}
|