mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-09 09:52:27 +01:00
37 lines
919 B
Plaintext
37 lines
919 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: 7heo <7heo@mail.com>
|
|
# Maintainer:
|
|
pkgname=libofx
|
|
pkgver=0.10.1
|
|
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="4575424abb56b93021ef223f90460979b544c32b4624936bbad16d0b5711afb6b5fa31b7c2cb835ff7a26be8c7ac51951198e5565a098713b8d33f0e17be774a libofx-0.10.1.tar.gz"
|