Files
termux-packages/packages/libosmpbf/build.sh
2026-01-04 14:40:47 +00:00

26 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/openstreetmap/OSM-binary/
TERMUX_PKG_DESCRIPTION="osmpbf is a Java/C library to read and write OpenStreetMap PBF files"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.5.1"
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=https://github.com/openstreetmap/OSM-binary/archive/refs/tags/v${TERMUX_PKG_VERSION}.zip
TERMUX_PKG_SHA256=edd98ba252c81372113747a131466f5ba45e0cff97b597e863a26e83943ba84f
TERMUX_PKG_DEPENDS="libc++, libprotobuf"
TERMUX_PKG_GROUPS="science"
termux_step_pre_configure() {
termux_setup_protobuf
CPPFLAGS+=" -DPROTOBUF_USE_DLLS"
# the error for 32-bit targets if this is not used looks like this:
# ld.lld: error: undefined symbol: char const*
# absl::lts_20250127::log_internal::MakeCheckOpString<long
# long, long long>(long long, long long, char const*)
# >>> referenced by osmformat.pb.cc
# >>> osmformat.pb.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool,
# int, int)) in archive osmpbf/libosmpbf.a
LDFLAGS+=" $($TERMUX_SCRIPTDIR/packages/libprotobuf/interface_link_libraries.sh)"
}