vcpkg/ports/spine-runtimes/portfile.cmake
Park DongHa 36ef0e1f29
[spine-runtimes] create a new port (#27006)
* [spine-runtimes] create a new port

* [spine-runtimes] update baseline

* [spine-runtimes] remove -Werror

* [spine-runtimes] remove customized compile flags

* [spine-runtime] license null

* Update ports/spine-runtimes/vcpkg.json

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* Update ports/spine-runtimes/portfile.cmake

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* [spine-runtimes] version name 4.1.00 --> 4.1.0

* [spine-runtimes] remove SFML feature

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2022-10-05 16:06:31 -07:00

26 lines
866 B
CMake

vcpkg_check_linkage(ONLY_STATIC_LIBRARY) # the project doesn't support SHARED
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO EsotericSoftware/spine-runtimes
REF 4.1.00
SHA512 40a352a1f5e9939802667f330c9de2f0b03bf63834d1c20514a6cecb35c1a9915fb13588ee92cbaba9effbd2205c25851cca58d2ec7f90ce9b974252bd168425
HEAD_REF 4.1
PATCHES
fix-cmake.patch
)
vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
vcpkg_cmake_build(TARGET spine-c LOGFILE_BASE build-c)
vcpkg_cmake_build(TARGET spine-cpp LOGFILE_BASE build-cpp)
vcpkg_cmake_install()
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/debug/share"
"${CURRENT_PACKAGES_DIR}/debug/bin"
"${CURRENT_PACKAGES_DIR}/bin"
)
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)