aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/http-parser
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/http-parser
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/http-parser')
-rw-r--r--vcpkg/ports/http-parser/CMakeLists.txt27
-rw-r--r--vcpkg/ports/http-parser/portfile.cmake24
-rw-r--r--vcpkg/ports/http-parser/vcpkg.json17
3 files changed, 68 insertions, 0 deletions
diff --git a/vcpkg/ports/http-parser/CMakeLists.txt b/vcpkg/ports/http-parser/CMakeLists.txt
new file mode 100644
index 0000000..cf3961c
--- /dev/null
+++ b/vcpkg/ports/http-parser/CMakeLists.txt
@@ -0,0 +1,27 @@
+cmake_minimum_required(VERSION 3.4)
+project(http-parser C)
+
+if(CMAKE_BUILD_TYPE MATCHES "Release")
+ add_definitions(-DHTTP_PARSER_STRICT=0)
+endif()
+
+add_library(http_parser http_parser.c http_parser.h)
+
+target_include_directories(http_parser PUBLIC $<INSTALL_INTERFACE:include>)
+
+install(
+ TARGETS http_parser
+ EXPORT NODEJS_HTTP_PARSER_ALL_TARGETS
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib
+ RUNTIME DESTINATION bin
+)
+
+install(
+ EXPORT NODEJS_HTTP_PARSER_ALL_TARGETS
+ NAMESPACE unofficial::http_parser::
+ FILE unofficial-http-parser-config.cmake
+ DESTINATION share/unofficial-http-parser
+)
+
+install(FILES http_parser.h DESTINATION include)
diff --git a/vcpkg/ports/http-parser/portfile.cmake b/vcpkg/ports/http-parser/portfile.cmake
new file mode 100644
index 0000000..fd016b9
--- /dev/null
+++ b/vcpkg/ports/http-parser/portfile.cmake
@@ -0,0 +1,24 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO nodejs/http-parser
+ REF 2343fd6b5214b2ded2cdcf76de2bf60903bb90cd # v2.9.4
+ SHA512 9fb95794d2c278c933e9bff0284befd1a8c8cf8ddda8e9929669f3134246d7fe81b54293359164d947f9278e2dd28b87d29a8ad8f523ed659d62713d782c7e46
+ HEAD_REF master
+)
+
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+)
+
+vcpkg_cmake_install()
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-http-parser)
+
+# Handle copyright
+file(INSTALL "${SOURCE_PATH}/LICENSE-MIT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/vcpkg/ports/http-parser/vcpkg.json b/vcpkg/ports/http-parser/vcpkg.json
new file mode 100644
index 0000000..9439704
--- /dev/null
+++ b/vcpkg/ports/http-parser/vcpkg.json
@@ -0,0 +1,17 @@
+{
+ "name": "http-parser",
+ "version": "2.9.4",
+ "port-version": 3,
+ "description": "HTTP Parser.",
+ "homepage": "https://github.com/nodejs/http-parser",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}