early-access version 2853
This commit is contained in:
10
externals/vcpkg/ports/bcg729/disable-alt-packaging.patch
vendored
Executable file
10
externals/vcpkg/ports/bcg729/disable-alt-packaging.patch
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 69dbaef..695f4d0 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -125,5 +125,4 @@ install(FILES
|
||||
DESTINATION ${CONFIG_PACKAGE_LOCATION}
|
||||
)
|
||||
|
||||
-add_subdirectory(build)
|
||||
|
||||
46
externals/vcpkg/ports/bcg729/portfile.cmake
vendored
Executable file
46
externals/vcpkg/ports/bcg729/portfile.cmake
vendored
Executable file
@@ -0,0 +1,46 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO BelledonneCommunications/bcg729
|
||||
REF 1.1.1
|
||||
SHA512 e8cc4b7486a9a29fb729ab9fd9e3c4a2155573f38cec16f5a53db3b416fc1119ea5f5a61243a8d37cb0b64580c5df1b632ff165dc7ff47421fa567dafffaacd8
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
disable-alt-packaging.patch
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" ENABLE_STATIC)
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" ENABLE_SHARED)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DENABLE_STATIC=${ENABLE_STATIC}
|
||||
-DENABLE_SHARED=${ENABLE_SHARED}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
|
||||
vcpkg_cmake_config_fixup(PACKAGE_NAME Bcg729)
|
||||
file(GLOB cmake_files "${CURRENT_PACKAGES_DIR}/share/Bcg729/cmake/*.cmake")
|
||||
file(COPY ${cmake_files} DESTINATION "${CURRENT_PACKAGES_DIR}/share/bcg729")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/Bcg729/cmake")
|
||||
file(GLOB_RECURSE remaining_files "${CURRENT_PACKAGES_DIR}/share/Bcg729/*")
|
||||
if(NOT remaining_files)
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/Bcg729")
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
vcpkg_fixup_pkgconfig()
|
||||
|
||||
file(READ "${SOURCE_PATH}/LICENSE.txt" GPL3)
|
||||
file(WRITE "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" [[
|
||||
bcg729 is dual licensed, and is available either:
|
||||
- under a GNU/GPLv3 license, for free (open source). See below.
|
||||
- under a proprietary license, for a fee, to be used in closed source applications.
|
||||
Contact Belledonne Communications (https://www.linphone.org/contact)
|
||||
for any question about costs and services.
|
||||
|
||||
|
||||
]] ${GPL3})
|
||||
17
externals/vcpkg/ports/bcg729/vcpkg.json
vendored
Executable file
17
externals/vcpkg/ports/bcg729/vcpkg.json
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "bcg729",
|
||||
"version": "1.1.1",
|
||||
"port-version": 3,
|
||||
"description": "Bcg729 is an open source implementation of the ITU G.729 Annex A and B codec.",
|
||||
"homepage": "https://github.com/BelledonneCommunications/bcg729",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user