mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-21 16:41:52 +01:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
|
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
|
pkgname=monetdb
|
|
_pkgname=MonetDB
|
|
pkgver=11.31.13
|
|
pkgrel=0
|
|
pkgdesc="Column-oriented database management system"
|
|
url="https://www.monetdb.org/Home"
|
|
arch="all"
|
|
license="MPL-1.1"
|
|
makedepends="musl-dev gcc bison make python openssl-dev libxml2-dev xz-dev bzip2-dev lz4-dev readline-dev snappy-dev curl-dev pcre-dev unixodbc-dev libatomic_ops-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://www.monetdb.org/downloads/sources/archive/$_pkgname-$pkgver.tar.xz
|
|
fix-definitions-musl.patch"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="3ff67f09045813dcbfa89b18e408c02b04b883685e55ff4a96b69d617059ab23dfa80c3ac707f1ac4207ae895c9b92234aee3df930b6ed8ada5ff8752915b338 MonetDB-11.31.13.tar.xz
|
|
c705b33fecfdfc503621960bccf0bd03af66e9c2d213538daf8e59c2c351c6f98ddfd7325df6036d3de71d156953a21d19c10cbadd4a8b8de63297bdc1d86198 fix-definitions-musl.patch"
|