early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

15
externals/vcpkg/ports/pngpp/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,15 @@
# Header only library
vcpkg_download_distfile(ARCHIVE
URLS "http://download.savannah.nongnu.org/releases/pngpp/png++-0.2.10.tar.gz"
FILENAME "png++-0.2.10.tar.gz"
SHA512 c54a74c0c20212bd0dcf86386c0c11dd824ad14952917ba0ff4c184b6547744458728a4f06018371acb7d5b842b641708914ccaa81bad8e72e173903f494ca85
)
vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE ${ARCHIVE}
)
file(GLOB HEADER_FILES ${SOURCE_PATH}/*.hpp)
file(INSTALL ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/png++)
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

8
externals/vcpkg/ports/pngpp/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,8 @@
{
"name": "pngpp",
"version-string": "0.2.10",
"description": "A C++ wrapper for libpng library.",
"dependencies": [
"libpng"
]
}