mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 19:25:27 +08:00
[brigand] Add new port (#7518)
This commit is contained in:
parent
3fe2ec61d3
commit
995ab87860
6
ports/brigand/CONTROL
Normal file
6
ports/brigand/CONTROL
Normal file
@ -0,0 +1,6 @@
|
||||
Source: brigand
|
||||
Version: 1.3.0
|
||||
Homepage: https://github.com/edouarda/brigand
|
||||
Description: Brigand is a light-weight, fully functional, instant-compile time C++ 11 meta-programming library.
|
||||
Build-Depends: boost
|
||||
|
14
ports/brigand/fix-install-targets.patch
Normal file
14
ports/brigand/fix-install-targets.patch
Normal file
@ -0,0 +1,14 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 13ea689..9d20700 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -292,3 +292,9 @@ install(DIRECTORY ${PROJECT_SOURCE_DIR}/brigand
|
||||
install(FILES ${CMAKE_BINARY_DIR}/libbrigand.pc
|
||||
DESTINATION lib/pkgconfig
|
||||
)
|
||||
+
|
||||
+install(TARGETS brigand
|
||||
+ RUNTIME DESTINATION bin
|
||||
+ LIBRARY DESTINATION lib
|
||||
+ ARCHIVE DESTINATION lib
|
||||
+)
|
29
ports/brigand/portfile.cmake
Normal file
29
ports/brigand/portfile.cmake
Normal file
@ -0,0 +1,29 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO edouarda/brigand
|
||||
REF 1.3.0
|
||||
SHA512 538d288d84265cc9a4563f1e84d55a174db461ffd1e4f510bfdaef04af9fbf8e7ca79817f9118378bf7d58d578699aae3072bbffa3fd727b2d93ee783337aea6
|
||||
HEAD_REF master
|
||||
PATCHES fix-install-targets.patch
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/pkgconfig)
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
|
||||
|
Loading…
x
Reference in New Issue
Block a user