18 lines
467 B
Bash
Raw Normal View History

2020-12-14 12:52:00 +05:30
# Helper function to compile and install geos
add_geos_helper() {
export GEOS_LINUX_LIBS='libgeos-dev'
export GEOS_DARWIN_LIBS='geos'
add_extension_from_source geos https://github.com libgeos php-geos 1.0.0 extension get
2020-12-14 12:52:00 +05:30
}
# Function to add geos
add_geos() {
enable_extension "geos" "extension"
if check_extension "geos"; then
add_log "${tick:?}" "geos" "Enabled"
else
2025-04-03 04:23:15 +05:30
add_geos_helper
2020-12-14 12:52:00 +05:30
add_extension_log "geos" "Installed and enabled"
fi
}