Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libofx] new port #26864

Merged
merged 12 commits into from
Sep 29, 2022
36 changes: 36 additions & 0 deletions ports/libofx/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libofx/libofx
REF 0.10.8
SHA512 e241a9ad766a91f53a2b65c316e87ee43df9173b25904d1af05c2ce491c8d781278333c20206751787f540c7bc9880b32a41a4646714fd1586f22801394d89a3
HEAD_REF master
)

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
"iconv" ENABLE_ICONV
"ofxdump" ENABLE_OFXDUMP
"ofx2qif" ENABLE_OFX2QIF
)

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DENABLE_OFXCONNECT=OFF # depends on libxml++ ABI 2.6, while vcpkg ships ABI 4.0. See https://libxmlplusplus.github.io/libxmlplusplus/#abi-versions
${FEATURE_OPTIONS}
)

vcpkg_cmake_install()
vcpkg_fixup_pkgconfig()
vcpkg_cmake_config_fixup(PACKAGE_NAME LibOFX CONFIG_PATH lib/cmake/libofx)
vcpkg_copy_pdbs()

list(REMOVE_ITEM FEATURES core iconv)
if(FEATURES)
vcpkg_copy_tools(TOOL_NAMES ${FEATURES} AUTO_CLEAN)
endif()

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
36 changes: 36 additions & 0 deletions ports/libofx/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "libofx",
"version": "0.10.8",
"description": "OFX banking protocol abstraction library",
"homepage": "https://github.com/libofx/libofx",
"license": "GPL-2.0-only",
"supports": "!uwp",
"dependencies": [
"libopensp",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"iconv"
],
"features": {
"iconv": {
"description": "Builds with ICONV support for encoding conversion",
"dependencies": [
"libiconv"
]
},
"ofx2qif": {
"description": "Enables OFX file to QIF (Quicken Interchange Format) file converter"
},
"ofxdump": {
"description": "Enables ofxdump utility which prints, in human readable form, everything the library understands about a file"
}
}
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3960,6 +3960,10 @@
"baseline": "2.4.0",
"port-version": 9
},
"libofx": {
"baseline": "0.10.8",
"port-version": 0
},
"libogg": {
"baseline": "1.3.5",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/libofx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "359386dc0b18eea302535a62b8d429325c457ebc",
"version": "0.10.8",
"port-version": 0
}
]
}