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