mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 08:18:54 +00:00
42 lines
1.5 KiB
Bash
42 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/google/glog
|
|
TERMUX_PKG_DESCRIPTION="Logging library for C++"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.7.1"
|
|
TERMUX_PKG_SRCURL=https://github.com/google/glog/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=00e4a87e87b7e7612f519a41e491f16623b12423620006f59f5688bfd8d13b08
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="gflags, libc++"
|
|
TERMUX_PKG_BUILD_DEPENDS="gflags-static"
|
|
TERMUX_PKG_BREAKS="google-glog-dev"
|
|
TERMUX_PKG_REPLACES="google-glog-dev"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DBUILD_SHARED_LIBS=ON"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=2
|
|
|
|
local v=$(sed -En 's/^\s*set_target_properties\s*\(glog\s+.*\s+SOVERSION\s+([0-9]+).*/\1/p' \
|
|
CMakeLists.txt)
|
|
if [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -llog"
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm600 "$TERMUX_PKG_SRCDIR"/libglog.pc.in \
|
|
"$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
sed -i "s|@prefix@|$TERMUX_PREFIX|g" "$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
sed -i "s|@exec_prefix@|$TERMUX_PREFIX|g" "$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
sed -i "s|@libdir@|$TERMUX_PREFIX/lib|g" "$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
sed -i "s|@includedir@|$TERMUX_PREFIX/include|g" "$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
sed -i "s|@VERSION@|$TERMUX_PKG_VERSION|g" "$TERMUX_PREFIX"/lib/pkgconfig/libglog.pc
|
|
}
|