diff options
| author | misirlou-tg <39652424+misirlou-tg@users.noreply.github.com> | 2021-09-23 19:50:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 17:50:15 -0700 |
| commit | 127ccb3c5e97b6d49d6fdc103c3857ff06197782 (patch) | |
| tree | af4f698855776ea1603d4af2e060772a2e8027b5 | |
| parent | 3b383400db647671377944a83a296f4a651b79ab (diff) | |
| download | vcpkg-127ccb3c5e97b6d49d6fdc103c3857ff06197782.tar.gz vcpkg-127ccb3c5e97b6d49d6fdc103c3857ff06197782.zip | |
[scottt-debugbreak] New port (#20276)
* [scottt-debugbreak] Adding new port
* Run x-add-version
| -rw-r--r-- | ports/scottt-debugbreak/portfile.cmake | 16 | ||||
| -rw-r--r-- | ports/scottt-debugbreak/vcpkg.json | 6 | ||||
| -rw-r--r-- | versions/baseline.json | 4 | ||||
| -rw-r--r-- | versions/s-/scottt-debugbreak.json | 9 |
4 files changed, 35 insertions, 0 deletions
diff --git a/ports/scottt-debugbreak/portfile.cmake b/ports/scottt-debugbreak/portfile.cmake new file mode 100644 index 000000000..95bb180be --- /dev/null +++ b/ports/scottt-debugbreak/portfile.cmake @@ -0,0 +1,16 @@ +# Header-only library
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO scottt/debugbreak
+ REF v1.0
+ SHA512 bf8c43d42d9b19c9a3cb1fa5955a24efb48c2c21f0d89685f23702c3e2644637f2e8c6ec599024866138519b107787baef838b6d981779e2484e30d20a7386b9
+ HEAD_REF master
+)
+
+file(
+ COPY "${SOURCE_PATH}/debugbreak.h"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/include"
+)
+
+# Handle copyright
+file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/ports/scottt-debugbreak/vcpkg.json b/ports/scottt-debugbreak/vcpkg.json new file mode 100644 index 000000000..599aa158a --- /dev/null +++ b/ports/scottt-debugbreak/vcpkg.json @@ -0,0 +1,6 @@ +{ + "name": "scottt-debugbreak", + "version": "1.0", + "description": "Break into the debugger programmatically", + "homepage": "https://github.com/scottt/debugbreak" +} diff --git a/versions/baseline.json b/versions/baseline.json index e944bcd35..a3e0d96f2 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -5908,6 +5908,10 @@ "baseline": "0.4", "port-version": 1 }, + "scottt-debugbreak": { + "baseline": "1.0", + "port-version": 0 + }, "scylla-wrapper": { "baseline": "2018-08-26-16e6f435", "port-version": 1 diff --git a/versions/s-/scottt-debugbreak.json b/versions/s-/scottt-debugbreak.json new file mode 100644 index 000000000..2d481e07b --- /dev/null +++ b/versions/s-/scottt-debugbreak.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "git-tree": "1b34b54dc87166ea5894f05536a17ea403a64e79", + "version": "1.0", + "port-version": 0 + } + ] +} |
