blob: 1000f2623e8390f34660970f8e13eaf449a8c004 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Tom Zander
pkgname=flowee-pay
pkgver=2024.10.1
options=(!lto)
pkgrel=1
pkgdesc="Flowee Payment solution"
arch=('x86_64' 'aarch64')
url="http://flowee.org/"
license=('GPL3')
depends=('qt6-base' 'qt6-declarative' 'qt6-svg' 'qt6-shadertools' 'qt6-scxml' 'zxing-cpp' 'qt6-multimedia')
makedepends=('boost' 'cmake' 'flowee>=2024.10.0' 'qt6-tools')
provides=('flowee-pay')
install=flowee-pay.install
source=("https://codeberg.org/Flowee/pay/archive/$pkgver.tar.gz"
"https://flowee.org/products/pay/blockheaders-850000")
sha256sums=('a304e0cd7ddefc974a21a5ca3112d65ea10c3831a1f0808beea091649c8de7b2'
'4a98c3b655cfd7520b4d4f682d95e3a82e0f03fda4fa687d28f2127205d66047')
build() {
ln -sf "$srcdir/blockheaders-850000" "$srcdir/blockheaders"
mkdir -p build
cd build
cmake -Dbuild_mobile_pay=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$pkgdir/usr/ ../pay
make
}
check() {
cd build/testing
make check
}
package() {
cd build
make install
# de-install pay_mobile
rm -f "$pkgdir/bin/pay_mobile"
# install blockheaders to avoid first-run download
install -Dm 644 "$srcdir/blockheaders" -t "$pkgdir/usr/share/floweepay"
}
|