Skip to content

Commit

Permalink
[brigand] Add new port (#7518)
Browse files Browse the repository at this point in the history
  • Loading branch information
NancyLi1013 authored and Rastaban committed Aug 2, 2019
1 parent 3fe2ec6 commit 995ab87
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ports/brigand/CONTROL
Original file line number Diff line number Diff line change
@@ -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 changes: 14 additions & 0 deletions ports/brigand/fix-install-targets.patch
Original file line number Diff line number Diff line change
@@ -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 changes: 29 additions & 0 deletions ports/brigand/portfile.cmake
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 995ab87

Please sign in to comment.