aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/dataframe
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/dataframe
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/dataframe')
-rw-r--r--vcpkg/ports/dataframe/portfile.cmake22
-rw-r--r--vcpkg/ports/dataframe/vcpkg.json18
2 files changed, 40 insertions, 0 deletions
diff --git a/vcpkg/ports/dataframe/portfile.cmake b/vcpkg/ports/dataframe/portfile.cmake
new file mode 100644
index 0000000..0495a0f
--- /dev/null
+++ b/vcpkg/ports/dataframe/portfile.cmake
@@ -0,0 +1,22 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO hosseinmoein/DataFrame
+ REF "${VERSION}"
+ SHA512 fa950dc2c2a6c001528e1c6d3ff6671cb7d929c47d3171773971d23e6866c5d83692b9f0791d1897c18710a839d42903eec4e8286d40cd8ae2db8503ebce2511
+ HEAD_REF master
+)
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DHMDF_TESTING:BOOL=OFF
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/DataFrame)
+
+vcpkg_fixup_pkgconfig()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/License")
diff --git a/vcpkg/ports/dataframe/vcpkg.json b/vcpkg/ports/dataframe/vcpkg.json
new file mode 100644
index 0000000..b95b2e3
--- /dev/null
+++ b/vcpkg/ports/dataframe/vcpkg.json
@@ -0,0 +1,18 @@
+{
+ "name": "dataframe",
+ "version": "3.7.0",
+ "description": "C++ DataFrame for statistical, Financial, and ML analysis in modern C++",
+ "homepage": "https://github.com/hosseinmoein/DataFrame",
+ "license": "BSD-3-Clause",
+ "supports": "!uwp",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}