-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit * Add usage and install * Correct library name * Try configure install * Disable more features * Remove redundant lines * Remove CMakeLists.txt * --without-cfitsio * Clean up vcpkg.json and disable windows * Format the manifest * Add versions * Update homepage and download URL * Fix version * Update usage * Update version
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
vcpkg_download_distfile(archive | ||
URLS "https://www.atnf.csiro.au/people/mcalabre/WCS/wcslib-7.12.tar.bz2" | ||
FILENAME "wcslib-7.12.tar.bz2" | ||
SHA512 7f38f725992d3c4bd3c1b908d494ac361c17f6b60f091d987fda596211423bb7396b3a5e2f1f6dd6215835016d302083472a7ad0822f17cdfe230c8f556b3e23 | ||
) | ||
|
||
vcpkg_extract_source_archive( | ||
src | ||
ARCHIVE "${archive}" | ||
) | ||
|
||
vcpkg_configure_make( | ||
SOURCE_PATH ${src} | ||
COPY_SOURCE | ||
OPTIONS | ||
--disable-flex | ||
--disable-fortran | ||
--without-pgplot | ||
--without-cfitsio) | ||
|
||
vcpkg_install_make(MAKEFILE GNUmakefile) | ||
vcpkg_fixup_pkgconfig() | ||
vcpkg_install_copyright(FILE_LIST "${src}/COPYING") | ||
|
||
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") |
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 @@ | ||
wcslib can be imported via CMake FindPkgConfig module: | ||
|
||
find_package(PkgConfig) | ||
pkg_check_modules(wcslib REQUIRED IMPORTED_TARGET wcslib) | ||
target_include_directories(main PRIVATE PkgConfig::wcslib) | ||
target_link_libraries(main PRIVATE PkgConfig::wcslib) |
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,7 @@ | ||
{ | ||
"name": "wcslib", | ||
"version": "7.12", | ||
"description": "World Coordinate System (WCS) (Library)", | ||
"homepage": "https://www.atnf.csiro.au/people/mcalabre/WCS/", | ||
"supports": "!windows" | ||
} |
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,9 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "2e33104b54c3db79012234ded4db319a3464885b", | ||
"version": "7.12", | ||
"port-version": 0 | ||
} | ||
] | ||
} |