mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-25 23:52:33 +02:00
34 lines
755 B
Plaintext
34 lines
755 B
Plaintext
# Contributor: Henrik Holst <henrik.holst@millistream.com>
|
|
# Maintainer:
|
|
pkgname=libmdf
|
|
pkgver="1.0.20"
|
|
pkgrel=0
|
|
pkgdesc="Millistream Data Feed API library"
|
|
url="https://millistream.com"
|
|
arch="all"
|
|
license="LGPL3"
|
|
depends=""
|
|
makedepends="libressl-dev zlib-dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="ftp://ftp1.millistream.com/sources/$pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b6e496839090067e481d21cbdcee473538941979ada1ad44130522d49f8ae276f68c0b073e28651d733046d72dcc1f5d6369c318ea709bc49dbff1354144c400 libmdf-1.0.20.tar.gz"
|