vp-build/srcpkgs/mongodb/template

78 lines
2.1 KiB
Bash

# Template file for 'mongodb'
pkgname=mongodb
version=3.2.10
revision=3
wrksrc="mongodb-src-r${version}"
hostmakedepends="scons"
makedepends="boost-devel pcre-devel snappy-devel libressl-devel libpcap-devel
gperftools-devel libsasl-devel yaml-cpp-devel"
depends="cyrus-sasl-modules"
conf_files="/etc/mongodb/mongodb.conf"
system_accounts="mongodb"
mongodb_homedir="/var/lib/mongodb"
short_desc="High-performance, schema-free document-oriented database"
maintainer="Enno Boland <gottox@voidlinux.eu>"
homepage="http://www.mongodb.org"
license="AGPL-3"
distfiles="http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz"
checksum=3bef44f50f302159c26194bcac9d51c81d98d57ea728f55400774850a70f5120
# build flags broken.
nopie=yes
make_dirs="
/var/lib/mongodb 0700 mongodb mongodb
/var/log/mongodb 0750 mongodb mongodb"
# ETOOHUGE
nodebug=1
case "${XBPS_TARGET_MACHINE}" in
x86_64*|aarch64*) makedepends+=" wiredtiger-devel";;
esac
do_configure() {
find . -name SConstruct -print0 | xargs -0 sed -i "s/-Werror/-Wno-error/g"
case "$XBPS_TARGET_MACHINE" in
*-musl) # Disable strtouq(3)
sed -i src/third_party/wiredtiger/build_linux/wiredtiger_config.h \
-e "s;#define HAVE_STRTOUQ 1;#undef HAVE_STRTOUQ;"
esac
}
do_build() {
# Choose storage engine
case "$XBPS_TARGET_MACHINE" in
x86_64*|aarch64*) _scons_args="--wiredtiger=on --use-system-wiredtiger";;
i686*|arm*) _scons_args="--wiredtiger=off --mmapv1=on";;
*) _scons_args="--wiredtiger=off";;
esac
scons core tools ${makejobs} \
CC=$CC \
CFLAGS="$CFLAGS" \
CXX=$CXX \
CXXFLAGS="$CXXFLAGS" \
LIBPATH="${XBPS_CROSS_BASE}/usr/lib" \
CPPPATH="${XBPS_CROSS_BASE}/usr/include" \
--prefix="/usr" \
--use-system-pcre \
--use-system-boost \
--use-system-snappy \
--use-system-zlib \
--use-system-yaml \
--use-system-intel_decimal128 \
--use-sasl-client \
--ssl \
--nostrip \
--disable-warnings-as-errors \
--allocator=system \
${_scons_args}
}
do_install() {
for b in mongos mongod mongosniff mongo mongoperf; do
vbin $b
done
vinstall ${FILESDIR}/mongodb.conf 644 etc/mongodb
vsv mongodb
}