[tiny-aes-c] Add new port (#7530)

This commit is contained in:
myd7349 2019-08-13 05:01:37 +08:00 committed by Griffin Downs
parent 28e510cbcc
commit da61a933fc
3 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,24 @@
cmake_minimum_required(VERSION 3.14)
project(tiny-aes-c LANGUAGES C ASM)
include(GNUInstallDirs)
add_library(tiny-aes-c aes.c)
target_include_directories(
tiny-aes-c
PUBLIC
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)
install(FILES aes.h aes.hpp DESTINATION include)
install(TARGETS tiny-aes-c EXPORT unofficial-tiny-aes-c-config)
install(
EXPORT unofficial-tiny-aes-c-config
NAMESPACE unofficial::tiny-aes-c::
DESTINATION share/unofficial-tiny-aes-c
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
)

4
ports/tiny-aes-c/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: tiny-aes-c
Version: 2019-07-31
Description: Small portable AES128/192/256 in C
Homepage: https://github.com/kokke/tiny-AES-c

View File

@ -0,0 +1,30 @@
include(vcpkg_common_functions)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO kokke/tiny-AES-c
REF ca85e00de963102d3999ea5fa865c0deff6370d3
SHA512 538d5d9cee8cecbf801d3553f2425f8a1331b59c652c11ee56c6e46a23450c1e9a59e3e1833f4384b7a4d992a93f30635855a47e2414b9293e0d27c426b6a4f3
HEAD_REF master
)
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH share/unofficial-${PORT} TARGET_PATH share/unofficial-${PORT})
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
# Handle copyright
configure_file(${SOURCE_PATH}/unlicense.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
# CMake integration test
vcpkg_test_cmake(PACKAGE_NAME unofficial-${PORT})