2021-04-30 06:43:20 +08:00
# We use the release tarball from GitHub instead of the sources in the repo because:
# - igraph will not compile from the git sources unless there is an actual git repository to back it. This is because it detects the version from git tags. The release tarball has the version hard-coded.
# - The release tarball contains pre-generated parser sources, which eliminates the dependency on bison/flex.
vcpkg_download_distfile ( ARCHIVE
2021-11-16 08:46:23 +08:00
U R L S " h t t p s : / / g i t h u b . c o m / i g r a p h / i g r a p h / r e l e a s e s / d o w n l o a d / 0 . 9 . 5 / i g r a p h - 0 . 9 . 5 . t a r . g z "
F I L E N A M E " i g r a p h - 0 . 9 . 5 . t a r . g z "
S H A 5 1 2 2 e b 5 6 2 b b 8 9 8 f f 1 9 f 8 e 4 e b b 2 d 9 f 3 3 9 3 0 0 0 b 6 6 1 5 4 c b 8 7 3 1 8 9 9 9 b b b 9 2 0 7 9 3 6 5 7 e 4 e 3 a 0 b 5 2 d 1 0 b c 8 c b e 4 d 2 c 3 a 5 d 2 7 2 5 8 f d 8 1 5 6 d f 9 7 f 7 7 8 0 6 5 a 9 2 b 9 6 9 b f c b 7 d 9 f c 2 8 c
2021-04-30 06:43:20 +08:00
)
vcpkg_extract_source_archive_ex (
O U T _ S O U R C E _ P A T H S O U R C E _ P A T H
A R C H I V E $ { A R C H I V E }
)
vcpkg_check_features ( OUT_FEATURE_OPTIONS FEATURE_OPTIONS
2021-06-04 03:39:51 +08:00
F E A T U R E S
2021-04-30 06:43:20 +08:00
g r a p h m l I G R A P H _ G R A P H M L _ S U P P O R T
2021-05-07 03:24:08 +08:00
o p e n m p I G R A P H _ O P E N M P _ S U P P O R T
2021-04-30 06:43:20 +08:00
)
2021-11-16 08:46:23 +08:00
# Allow cross-compilation. See https://igraph.org/c/html/latest/igraph-Installation.html#igraph-Installation-cross-compiling
2021-04-30 06:43:20 +08:00
set ( ARITH_H "" )
if ( VCPKG_TARGET_IS_OSX )
set ( ARITH_H ${ CURRENT_PORT_DIR } /arith_osx.h )
elseif ( VCPKG_TARGET_IS_WINDOWS OR VCPKG_TARGET_IS_UWP )
if ( VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" )
set ( ARITH_H ${ CURRENT_PORT_DIR } /arith_win32.h )
elseif ( VCPKG_TARGET_ARCHITECTURE STREQUAL "x64" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64" )
set ( ARITH_H ${ CURRENT_PORT_DIR } /arith_win64.h )
endif ( )
endif ( )
2021-11-16 08:46:23 +08:00
vcpkg_cmake_configure (
S O U R C E _ P A T H " $ { S O U R C E _ P A T H } "
2021-04-30 06:43:20 +08:00
O P T I O N S
- D I G R A P H _ E N A B L E _ L T O = A U T O
# ARPACK not yet available in vcpkg.
- D I G R A P H _ U S E _ I N T E R N A L _ A R P A C K = O N
# OpenBLAS provides BLAS/LAPACK but some tests fail with OpenBLAS on Windows.
# See https://github.com/igraph/igraph/issues/1491
- D I G R A P H _ U S E _ I N T E R N A L _ B L A S = O N
- D I G R A P H _ U S E _ I N T E R N A L _ L A P A C K = O N
- D I G R A P H _ U S E _ I N T E R N A L _ C X S P A R S E = O F F
# GLPK is not yet available in vcpkg.
- D I G R A P H _ U S E _ I N T E R N A L _ G L P K = O N
2021-11-16 08:46:23 +08:00
# Currently, external GMP provides no performance or functionality benefits.
2021-04-30 06:43:20 +08:00
- D I G R A P H _ U S E _ I N T E R N A L _ G M P = O N
- D F 2 C _ E X T E R N A L _ A R I T H _ H E A D E R = $ { A R I T H _ H }
$ { F E A T U R E _ O P T I O N S }
)
2021-11-16 08:46:23 +08:00
vcpkg_cmake_install ( )
2021-04-30 06:43:20 +08:00
vcpkg_copy_pdbs ( )
file ( REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" )
2021-11-16 08:46:23 +08:00
vcpkg_cmake_config_fixup ( CONFIG_PATH lib/cmake/igraph )
2021-04-30 06:43:20 +08:00
file ( INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright )
2021-10-28 06:19:28 +08:00
vcpkg_fixup_pkgconfig ( )