mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:47:14 +08:00
25 lines
668 B
Bash
25 lines
668 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=libofx
|
|
pkgver=0.9.2
|
|
pkgrel=1
|
|
pkgdesc="API for the OFX banking standard"
|
|
arch=('i686' 'x86_64')
|
|
url="http://libofx.sourceforge.net"
|
|
license=("GPL")
|
|
options=('!libtool')
|
|
depends=('opensp>=1.5.2' 'curl' 'gcc-libs')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('cb72fce95e0d59bef78ba0601fbc91f3')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|