-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alexander Neumann <[email protected]> Co-authored-by: Alexander Neumann <[email protected]> Co-authored-by: Kai Pastor <[email protected]> Co-authored-by: Billy O'Neal <[email protected]> Co-authored-by: Javier Matos <[email protected]>
- Loading branch information
1 parent
1bf27ad
commit 80d54ff
Showing
32 changed files
with
2,027 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
{ | ||
"name": "coin-or-cbc", | ||
"version-date": "2024-06-04", | ||
"port-version": 1, | ||
"description": "Cbc (Coin-or branch and cut) is an open-source mixed integer linear programming solver written in C++.", | ||
"homepage": "https://github.com/coin-or/Cbc", | ||
"license": "EPL-2.0", | ||
"dependencies": [ | ||
"coin-or-cgl", | ||
"coin-or-clp", | ||
"coin-or-osi", | ||
"coinutils" | ||
"coinutils", | ||
{ | ||
"name": "vcpkg-make", | ||
"host": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
{ | ||
"name": "jemalloc", | ||
"version": "5.3.0", | ||
"port-version": 1, | ||
"port-version": 2, | ||
"description": "jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support", | ||
"homepage": "https://jemalloc.net/", | ||
"license": "BSD-2-Clause" | ||
"license": "BSD-2-Clause", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-make", | ||
"host": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
set(VCPKG_POLICY_CMAKE_HELPER_PORT enabled) | ||
|
||
vcpkg_download_distfile(ARCHIVE | ||
URLS https://ftp.gnu.org/gnu/automake/automake-1.17.tar.gz | ||
FILENAME automake.tar.gz | ||
SHA512 11357dfab8cbf4b5d94d9d06e475732ca01df82bef1284888a34bd558afc37b1a239bed1b5eb18a9dbcc326344fb7b1b301f77bb8385131eb8e1e118b677883a | ||
) | ||
|
||
vcpkg_extract_source_archive( | ||
automake_source | ||
ARCHIVE "${ARCHIVE}" | ||
) | ||
|
||
file(INSTALL | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_configure.cmake" | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_install.cmake" | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_common.cmake" | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_make.cmake" | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_scripts.cmake" | ||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake" | ||
DESTINATION | ||
"${CURRENT_PACKAGES_DIR}/share/${PORT}" | ||
) | ||
|
||
file(INSTALL | ||
"${automake_source}/lib/ar-lib" | ||
"${automake_source}/lib/compile" | ||
DESTINATION | ||
"${CURRENT_PACKAGES_DIR}/share/${PORT}/wrappers" | ||
) | ||
|
||
vcpkg_install_copyright(FILE_LIST "${VCPKG_ROOT_DIR}/LICENSE.txt") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include("${CMAKE_CURRENT_LIST_DIR}/../vcpkg-cmake-get-vars/vcpkg-port-config.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_configure.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_install.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_make_common.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_make.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_scripts.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "vcpkg-make", | ||
"version-date": "2023-05-15", | ||
"documentation": "https://vcpkg.io/en/docs/maintainers/ports/vcpkg-make.html", | ||
"license": "MIT", | ||
"supports": "native", | ||
"dependencies": [ | ||
{ | ||
"name": "pkgconf", | ||
"host": true, | ||
"platform": "windows" | ||
}, | ||
"vcpkg-cmake-get-vars" | ||
] | ||
} |
Oops, something went wrong.