mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-27 19:41:56 +01:00
39 lines
921 B
Plaintext
39 lines
921 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: 7heo <7heo@mail.com>
|
|
# Maintainer:
|
|
pkgname=libofx
|
|
pkgver=0.10.2
|
|
pkgrel=0
|
|
pkgdesc="The libofx OFX banking protocol abstraction library"
|
|
url="https://github.com/libofx/libofx"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="bash automake autoconf libtool gengetopt opensp-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/libofx/libofx/archive/$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
14ba2779d94209312a8a1bbf598e6a31820df4fa7e222ae1abb8d4234a6c7ba7068e06a73ad4ee93bcb53ccb99a8007d799d9e66a9921704dc75c84b0e7dc307 libofx-0.10.2.tar.gz
|
|
"
|