mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
9ee17a9593
* aapt: revbump * et: revbump * libncnn: revbump * libprotobuf-c: revbump * libprotobuf: revbump * protobuf-static: revbump * libwebrtc-audio-processing: revbump * mosh: revbump * pika: revbump * opencv: revbump * python-torch: revbump * libgrpc: revbump due to symbol changes in abseil-cpp
39 lines
1.4 KiB
Bash
39 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/OpenAtomFoundation/pika
|
|
TERMUX_PKG_DESCRIPTION="A persistent huge storage service, compatible with the vast majority of Redis interfaces"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=3.4.1
|
|
TERMUX_PKG_REVISION=10
|
|
TERMUX_PKG_SRCURL=git+https://github.com/OpenAtomFoundation/pika
|
|
TERMUX_PKG_DEPENDS="abseil-cpp, google-glog, libc++, libprotobuf, librocksdb"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
# ```
|
|
# [...]/src/pika_set.cc:107:58: error: cannot initialize a parameter of type
|
|
# 'long *' with an rvalue of type 'int64_t *' (aka 'long long *')
|
|
# if (!slash::string2l(argv_[2].data(), argv_[2].size(), &cursor_)) {
|
|
# ^~~~~~~~
|
|
# ```
|
|
TERMUX_PKG_BLACKLISTED_ARCHES="arm, i686"
|
|
|
|
termux_step_post_get_source() {
|
|
rm -fr third/rocksdb
|
|
rm -fr third/blackwidow/deps/rocksdb
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_protobuf
|
|
|
|
CPPFLAGS+=" -D_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES"
|
|
CPPFLAGS+=" -DPROTOBUF_USE_DLLS"
|
|
# from PREFIX/lib/cmake/glog/glog-targets.cmake
|
|
CPPFLAGS+=" -DGLOG_USE_GLOG_EXPORT -DGLOG_USE_GFLAGS"
|
|
LDFLAGS+=" $($TERMUX_SCRIPTDIR/packages/libprotobuf/interface_link_libraries.sh)"
|
|
export DISABLE_UPDATE_SB=1
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin output/bin/pika
|
|
install -Dm600 -t $TERMUX_PREFIX/share/pika conf/pika.conf
|
|
}
|