aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/libsmb2/portfile.cmake27
-rw-r--r--ports/libsmb2/vcpkg.json14
2 files changed, 41 insertions, 0 deletions
diff --git a/ports/libsmb2/portfile.cmake b/ports/libsmb2/portfile.cmake
new file mode 100644
index 000000000..4558f3e01
--- /dev/null
+++ b/ports/libsmb2/portfile.cmake
@@ -0,0 +1,27 @@
+vcpkg_fail_port_install(ON_TARGET "osx")
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO sahlberg/libsmb2
+ REF d8c85a3119a0bd769590e448216130b368cd1099
+ SHA512 d15a040ed6314ad6f7984cfa7b52d9ede9934b2a7ec9827e833f574c25c9f694b5372b3e0950e258a6244b7aaf32b9e59987a75a88681d8031d9837ba94629d5
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+)
+
+vcpkg_install_cmake()
+vcpkg_copy_pdbs()
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
+vcpkg_fixup_pkgconfig()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+#the debug/share folder is generated empty by the provided cmake system
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
diff --git a/ports/libsmb2/vcpkg.json b/ports/libsmb2/vcpkg.json
new file mode 100644
index 000000000..4b5b2b9a9
--- /dev/null
+++ b/ports/libsmb2/vcpkg.json
@@ -0,0 +1,14 @@
+{
+ "name": "libsmb2",
+ "version-date": "2021-04-29",
+ "description": "SMB2/3 Userspace Client",
+ "homepage": "https://github.com/sahlberg/libsmb2",
+ "supports": "!osx",
+ "dependencies": [
+ "openssl",
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}