[mdns] added new port (#15142)

This commit is contained in:
Mathis Logemann 2020-12-17 09:16:17 +01:00 committed by GitHub
parent 43ed42101d
commit 4177474d97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

21
ports/mdns/portfile.cmake Normal file
View File

@ -0,0 +1,21 @@
#header-only library
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO mjansson/mdns
REF 1.1
SHA512 03e4682d87e9c1157bba04e04a3dfbb2ed7e25df31f00834fbc7bf4275e5c7f7406e590c8bdc386a4e6fbe6a5667f700e146d39758aa8ee0a47f735547cacd31
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DMDNS_BUILD_EXAMPLE=OFF
)
vcpkg_install_cmake()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

6
ports/mdns/vcpkg.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "mdns",
"version-string": "1.1",
"description": "Public domain mDNS/DNS-SD library in C",
"homepage": "https://github.com/mjansson/mdns"
}