aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/byte-lite
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/byte-lite
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/byte-lite')
-rw-r--r--vcpkg/ports/byte-lite/portfile.cmake24
-rw-r--r--vcpkg/ports/byte-lite/vcpkg.json15
2 files changed, 39 insertions, 0 deletions
diff --git a/vcpkg/ports/byte-lite/portfile.cmake b/vcpkg/ports/byte-lite/portfile.cmake
new file mode 100644
index 0000000..0e744d9
--- /dev/null
+++ b/vcpkg/ports/byte-lite/portfile.cmake
@@ -0,0 +1,24 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO martinmoene/byte-lite
+ REF v0.3.0
+ SHA512 a49c7cf820db2bcf63f231324bca72642161fcaa4ecd9e4b18aa752902f393a3983014feae824fa4f5dea0e7182eadded1a9a83c469fa4039d4d17b3c814b2ef
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DBYTE_LITE_OPT_BUILD_TESTS=OFF
+ -DBYTE_LITE_OPT_BUILD_EXAMPLES=OFF
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
+
+file(REMOVE_RECURSE
+ "${CURRENT_PACKAGES_DIR}/debug"
+ "${CURRENT_PACKAGES_DIR}/lib"
+)
+
+file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/vcpkg/ports/byte-lite/vcpkg.json b/vcpkg/ports/byte-lite/vcpkg.json
new file mode 100644
index 0000000..66eb842
--- /dev/null
+++ b/vcpkg/ports/byte-lite/vcpkg.json
@@ -0,0 +1,15 @@
+{
+ "name": "byte-lite",
+ "version": "0.3.0",
+ "description": "A C++17-like byte type for C++98, C++11 and later in a single-file header-only library",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}