Skip to content

Commit

Permalink
[libspng]: New port
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasqueX committed Nov 30, 2023
1 parent 4cac260 commit cf3046f
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ports/libspng/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO randy408/libspng
REF "v${VERSION}"
SHA512 cd729653599ed97f80d19f3048c1b3bc2ac16f922b3465804b1913bc45d9fc8b28b56bc2121fda36e9d3dcdd12612cced5383313b722a5342b613f8781879f1a
HEAD_REF master
)

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" SPNG_BUILD_STATIC)
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SPNG_BUILD_SHARED)

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DSPNG_STATIC=${SPNG_BUILD_STATIC}
-DSPNG_SHARED=${SPNG_BUILD_SHARED}
-DBUILD_EXAMPLES=OFF
)

vcpkg_cmake_install()

vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/spng PACKAGE_NAME spng)

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

vcpkg_copy_pdbs()
vcpkg_fixup_pkgconfig()

file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
4 changes: 4 additions & 0 deletions ports/libspng/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libspng provides CMake targets:

find_package(spng CONFIG REQUIRED)
target_link_libraries(main PRIVATE spng::spng)
18 changes: 18 additions & 0 deletions ports/libspng/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "libspng",
"version": "0.7.4",
"description": "Simple, modern libpng alternative",
"homepage": "https://github.com/randy408/libspng",
"license": "BSD-2-Clause",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4832,6 +4832,10 @@
"baseline": "0.2.3",
"port-version": 2
},
"libspng": {
"baseline": "0.7.4",
"port-version": 0
},
"libsquish": {
"baseline": "1.15",
"port-version": 13
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/libspng.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "8efb5a57f5115864001d6eddad855e2958f14fee",
"version": "0.7.4",
"port-version": 0
}
]
}

0 comments on commit cf3046f

Please sign in to comment.