Update to latest

This commit is contained in:
2021-05-04 22:25:43 +02:00
parent bf951b22b7
commit cba3949d2e
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
pkgbase = flowee-pay
pkgdesc = Flowee Payment solution
pkgver = 2021.01.1
pkgver = 2021.04.0
pkgrel = 1
url = https://flowee.org/
arch = x86_64
@@ -8,11 +8,11 @@ pkgbase = flowee-pay
license = GPL3
makedepends = boost
makedepends = cmake
depends = flowee>=2021.01.1
depends = flowee>=2021.04.0
depends = qt5-base
provides = flowee-pay
source = https://gitlab.com/FloweeTheHub/pay/-/archive/2021.01.1/pay-2021.01.1.tar.gz
sha256sums = 35cc3810733250aa1c256ab4f4475650028ca9562801c5cc5d3fda3311681206
source = https://gitlab.com/FloweeTheHub/pay/-/archive/2021.04.0/pay-2021.04.0.tar.gz
sha256sums = 85e5b81f94edea3b595eef4e477767b37653f0254b258b78be47915b9c568bcc
pkgname = flowee-pay
+4 -4
View File
@@ -1,22 +1,22 @@
# Maintainer: Tom Zander
pkgname=flowee-pay
pkgver=2021.01.1
pkgver=2021.04.0
pkgrel=1
pkgdesc="Flowee Payment solution"
arch=('x86_64' 'aarch64')
url="https://flowee.org/"
license=('GPL3')
depends=('flowee>=2021.01.1' 'qt5-base')
depends=('flowee>=2021.04.0' 'qt5-base')
makedepends=('boost' 'cmake')
provides=('flowee-pay')
source=("https://gitlab.com/FloweeTheHub/pay/-/archive/$pkgver/pay-$pkgver.tar.gz")
sha256sums=('35cc3810733250aa1c256ab4f4475650028ca9562801c5cc5d3fda3311681206')
sha256sums=('85e5b81f94edea3b595eef4e477767b37653f0254b258b78be47915b9c568bcc')
build() {
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=$pkgdir/usr/ ../pay-$pkgver
cmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX=$pkgdir/usr/ ../pay-$pkgver
make
}