aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/lmdb/portfile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/lmdb/portfile.cmake')
-rw-r--r--vcpkg/ports/lmdb/portfile.cmake44
1 files changed, 44 insertions, 0 deletions
diff --git a/vcpkg/ports/lmdb/portfile.cmake b/vcpkg/ports/lmdb/portfile.cmake
new file mode 100644
index 0000000..af5591d
--- /dev/null
+++ b/vcpkg/ports/lmdb/portfile.cmake
@@ -0,0 +1,44 @@
+vcpkg_from_gitlab(
+ OUT_SOURCE_PATH SOURCE_PATH
+ GITLAB_URL https://git.openldap.org
+ REPO openldap/openldap
+ REF "LMDB_${VERSION}"
+ SHA512 57404b35adb5136fcdf60552c2dd2626b9753868f2707d3279725e08145cee3be0d311189b2c6ef6879f25cf09962e6b423c70c8a2e09ef1b368948e873d92b5
+ HEAD_REF master
+ PATCHES
+ getopt-win32.diff
+)
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/cmake/" DESTINATION "${SOURCE_PATH}/libraries/liblmdb")
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS options_release
+ FEATURES
+ tools LMDB_BUILD_TOOLS
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}/libraries/liblmdb"
+ OPTIONS
+ "-DLMDB_VERSION=${VERSION}"
+ OPTIONS_RELEASE
+ ${options_release}
+ OPTIONS_DEBUG
+ -DLMDB_INSTALL_HEADERS=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_copy_pdbs()
+vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-lmdb)
+
+if(LMDB_BUILD_TOOLS)
+ vcpkg_copy_tools(TOOL_NAMES mdb_copy mdb_dump mdb_load mdb_stat AUTO_CLEAN)
+endif()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+file(COPY "${CURRENT_PORT_DIR}/lmdb-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
+file(COPY "${CURRENT_PORT_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
+vcpkg_install_copyright(
+ FILE_LIST
+ "${SOURCE_PATH}/libraries/liblmdb/COPYRIGHT"
+ "${SOURCE_PATH}/libraries/liblmdb/LICENSE"
+)