2016-10-16 20:22:00 -04:00
|
|
|
include(vcpkg_common_functions)
|
2018-10-16 03:56:14 +02:00
|
|
|
|
|
|
|
set(GEOS_VERSION 3.6.3)
|
2017-09-26 22:29:24 +02:00
|
|
|
|
2016-10-16 20:22:00 -04:00
|
|
|
vcpkg_download_distfile(ARCHIVE
|
2018-10-16 03:56:14 +02:00
|
|
|
URLS "http://download.osgeo.org/geos/geos-${GEOS_VERSION}.tar.bz2"
|
|
|
|
FILENAME "geos-${GEOS_VERSION}.tar.bz2"
|
|
|
|
SHA512 f88adcf363433e247a51fb1a2c0b53f39b71aba8a6c01dd08aa416c2e980fe274a195e6edcb5bb5ff8ea81b889da14a1a8fb2849e04669aeba3b6d55754dc96a
|
2016-10-16 20:22:00 -04:00
|
|
|
)
|
2018-10-16 03:56:14 +02:00
|
|
|
vcpkg_extract_source_archive_ex(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
ARCHIVE ${ARCHIVE}
|
|
|
|
REF ${GEOS_VERSION}
|
|
|
|
PATCHES geos_c-static-support.patch
|
2017-10-03 23:37:23 +05:00
|
|
|
)
|
2016-10-16 20:22:00 -04:00
|
|
|
|
2017-09-26 22:29:24 +02:00
|
|
|
# NOTE: GEOS provides CMake as optional build configuration, it might not be actively
|
|
|
|
# maintained, so CMake build issues may happen between releases.
|
|
|
|
|
2016-10-16 20:22:00 -04:00
|
|
|
vcpkg_configure_cmake(
|
2016-12-07 15:23:50 -08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2018-10-16 03:56:14 +02:00
|
|
|
PREFER_NINJA
|
2018-05-01 10:14:18 +02:00
|
|
|
OPTIONS
|
2018-10-16 03:56:14 +02:00
|
|
|
-DCMAKE_DEBUG_POSTFIX=d
|
|
|
|
-DGEOS_ENABLE_TESTS=False
|
2016-10-16 20:22:00 -04:00
|
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
2018-10-16 03:56:14 +02:00
|
|
|
|
2018-12-13 13:06:27 +01:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
|
|
endif()
|
|
|
|
|
2016-10-16 20:22:00 -04:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
|
2018-10-16 03:56:14 +02:00
|
|
|
if(EXISTS ${CURRENT_PACKAGES_DIR}/bin/geos-config)
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share/geos)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/bin/geos-config ${CURRENT_PACKAGES_DIR}/share/geos/geos-config)
|
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/geos-config)
|
2016-10-31 12:34:04 -07:00
|
|
|
endif()
|
|
|
|
|
2018-10-16 03:56:14 +02:00
|
|
|
# Handle copyright
|
|
|
|
configure_file(${SOURCE_PATH}/COPYING ${CURRENT_PACKAGES_DIR}/share/geos/copyright COPYONLY)
|
|
|
|
|
2017-10-04 05:36:30 -07:00
|
|
|
vcpkg_copy_pdbs()
|