aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-08-09 13:10:28 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-08-09 13:10:28 -0700
commit6466655e68e454a6738b2464001fbd717c35ee59 (patch)
treec3f5e1cbaa140c3c2aceb741f9cd166331bfe9c7
parent7baf25786d2d4adb827ec4531d2fc2cb1fb0d5a6 (diff)
downloadvcpkg-6466655e68e454a6738b2464001fbd717c35ee59.tar.gz
vcpkg-6466655e68e454a6738b2464001fbd717c35ee59.zip
Remove redshell since it is no longer available
-rw-r--r--ports/redshell/CONTROL4
-rw-r--r--ports/redshell/portfile.cmake64
2 files changed, 0 insertions, 68 deletions
diff --git a/ports/redshell/CONTROL b/ports/redshell/CONTROL
deleted file mode 100644
index adb34e490..000000000
--- a/ports/redshell/CONTROL
+++ /dev/null
@@ -1,4 +0,0 @@
-Source: redshell
-Version: 1.1.2
-Description: RedShell C++ SDK. Steam attribution tracking, www.redshell.io
-# Built-Using: openssl (= 1.0.2m), cpprestsdk (= 2.10.0), boost (= 1.65.1-3), websocketpp (= 0.7.0-1), zlib (= 1.2.11-3), bzip2 (= 1.0.6-2)
diff --git a/ports/redshell/portfile.cmake b/ports/redshell/portfile.cmake
deleted file mode 100644
index 52d5c105e..000000000
--- a/ports/redshell/portfile.cmake
+++ /dev/null
@@ -1,64 +0,0 @@
-include(vcpkg_common_functions)
-
-if(VCPKG_TARGET_ARCHITECTURE STREQUAL arm)
- message(FATAL_ERROR "Error: redshell does not support the ARM architecture.")
-endif()
-
-if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
- message(FATAL_ERROR "Error: redshell does not support UWP builds.")
-endif()
-
-if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
- message("Redshell only supports dynamic library linkage")
- set(VCPKG_LIBRARY_LINKAGE "dynamic")
-endif()
-
-if(NOT VCPKG_CRT_LINKAGE STREQUAL "dynamic")
- message(FATAL_ERROR "Redshell only supports dynamic CRT linkage")
-endif()
-
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/redshell)
-
-vcpkg_from_github(
- OUT_SOURCE_PATH SOURCE_PATH
- REPO Innervate/red-shell-cpp
- REF 1.1.2
- SHA512 9e0705508928efed5ae5c216316cb0429090cd7131ca7993f585eaf26bccd1e18b93dfeaff0406c64921b06c8312c0d147024af1c29e6003ff35556cda36e57c
- HEAD_REF master
-)
-
-# Header .h
-file(COPY
- "${SOURCE_PATH}/include/RedShell.h"
- DESTINATION ${CURRENT_PACKAGES_DIR}/include/redshell
-)
-
-# Debug .lib
-file(COPY
- "${SOURCE_PATH}/lib/${VCPKG_TARGET_ARCHITECTURE}/debug/RedShell.lib"
- DESTINATION ${CURRENT_PACKAGES_DIR}/debug/lib
-)
-
-# Release .lib
-file(COPY
- "${SOURCE_PATH}/lib/${VCPKG_TARGET_ARCHITECTURE}/RedShell.lib"
- DESTINATION ${CURRENT_PACKAGES_DIR}/lib
-)
-
-# Debug .dll
-file(COPY
- "${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/debug/RedShell.dll"
- DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin
-)
-
-# Release .dll
-file(COPY
- "${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/RedShell.dll"
- DESTINATION ${CURRENT_PACKAGES_DIR}/bin
-)
-
-# Copyright
-file(COPY
- "${SOURCE_PATH}/LICENSE.txt"
- DESTINATION ${CURRENT_PACKAGES_DIR}/share/redshell/copyright
-)