new package

This commit is contained in:
TomZ
2020-05-26 20:37:01 +02:00
commit 746857a3b4
3 changed files with 45 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
pkgbase = flowee-pay
pkgdesc = Flowee Payment solution
pkgver = 2020.04.1
pkgrel = 1
url = https://flowee.org/
arch = x86_64
license = GPL3
makedepends = boost
makedepends = cmake
depends = flowee-hub
depends = qt5-base
provides = flowee-pay
source = git+https://gitlab.com/FloweeTheHub/pay.git#branch=master
sha256sums = SKIP
pkgname = flowee-pay
+1
View File
@@ -0,0 +1 @@
pay
+27
View File
@@ -0,0 +1,27 @@
# Maintainer: Tom Zander
pkgname=flowee-pay
pkgver=2020.04.1
pkgrel=1
pkgdesc="Flowee Payment solution"
arch=('x86_64')
url="https://flowee.org/"
license=('GPL3')
depends=('flowee-hub' 'qt5-base')
makedepends=('boost' 'cmake')
provides=('flowee-pay')
source=("git+https://gitlab.com/FloweeTheHub/pay.git#branch=master")
sha256sums=('SKIP')
build() {
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=$pkgdir/usr/ ../pay
make
}
package() {
cd build
make install
}