vcpkg/ports/kf5notifications/portfile.cmake
Dawid Wróbel a7e7bcdd96
[kf5notifications] new port (#19828)
* Add kf5notifications port

* Fixed kf5notifications for windows

* [kf5*] update to 5.75.0

* [kf5notifications] port CONTROL to JSON

* [kf5notifications] remove redundant options

* [kf5notifications] update to current spec

* [kf5notifications] wrap paths in quotes

* [kf5notifications] use semver

* [kf5notifications] update to 5.84.0

* [kf5notifications] update versions

* [kf5notifications] remove bin from static builds

* [kf5notifications] update versions

* [kf5notifications] add kf5windowsystem dependency

* [kf5notifications] update versions

* [kf5notifications] fix CMake config file

* [kf5notifications] update versions

* [kf5notifications] add androidextras dependency

* [kf5notifications] update versions

* [kf5notifications] update versions

* [kf5newstuff] minimize patch size

* [kf5newstuff] use generic, non-semver versioning

* [kf5newstuff] update versions

* [kf5notifications] re-enable parallel configure

* [kf5notifications] update versions

Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-09-29 08:32:13 -07:00

31 lines
1.1 KiB
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/knotifications
REF v5.84.0
SHA512 ee8d2d0531df726f3e372983e30c2365aab887e1a3cdf5fb9c1b788e78b490f984018a44934ce62116bf10827fbf9aeeaf23236a7024a0e3757a1da7e90dca6c
HEAD_REF master
PATCHES
fix_config_cmake.patch
)
# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
file(WRITE ${SOURCE_PATH}/.clang-format "DisableFormat: true\nSortIncludes: false\n")
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_TESTING=OFF
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Notifications CONFIG_PATH lib/cmake/KF5Notifications)
vcpkg_copy_pdbs()
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")