Initial version

This commit is contained in:
exu 2023-07-14 15:21:08 +02:00
commit 1ff445a7bf
3 changed files with 40 additions and 0 deletions

13
.SRCINFO Normal file
View File

@ -0,0 +1,13 @@
pkgbase = ofxstatement-iso20022-git
pkgdesc = Plugin to read ISO-20022 formatted statements.
pkgver = 0.6.0.r13.gc17d0f5
pkgrel = 1
url = https://github.com/kedder/ofxstatement-iso20022
arch = any
license = GPL
makedepends = git
depends = ofxstatement
source = git+https://github.com/kedder/ofxstatement-iso20022.git
sha256sums = SKIP
pkgname = ofxstatement-iso20022-git

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.zst
/ofxstatement-iso20022/
/pkg/
/src/

23
PKGBUILD Normal file
View File

@ -0,0 +1,23 @@
# Maintainer: RealStickman <mrc+aur _a_ frm01 _d_ net>
pkgname=ofxstatement-iso20022-git
pkgver=0.6.0.r13.gc17d0f5
pkgrel=1
pkgdesc="Plugin to read ISO-20022 formatted statements."
arch=('any')
url="https://github.com/kedder/ofxstatement-iso20022"
license=('GPL')
depends=('ofxstatement')
makedepends=('git')
source=('git+https://github.com/kedder/ofxstatement-iso20022.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$srcdir/${pkgname%-git}"
python setup.py install --root="$pkgdir" --optimize=1
}