Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions ports/soundtouch/fix-install-includes.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1234567..abcdefg 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -100,11 +100,11 @@ install(FILES

install(TARGETS SoundTouch
EXPORT SoundTouchTargets
+ COMPONENT SoundTouch
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}"
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
- COMPONENT SoundTouch
)

#######################
2 changes: 2 additions & 0 deletions ports/soundtouch/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ vcpkg_from_github(
REF ${VERSION}
SHA512 8bd199c6363104ba6c9af1abbd3c4da3567ccda5fe3a68298917817fc9312ecb0914609afba1abd864307b0a596becf450bc7073eeec17b1de5a7c5086fbc45e
HEAD_REF master
PATCHES
fix-install-includes.patch
)

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
Expand Down
13 changes: 8 additions & 5 deletions ports/soundtouch/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"name": "soundtouch",
"version": "2.4.0",
"port-version": 1,
"description": "SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or audio files.",
"homepage": "https://www.surina.net/soundtouch",
"license": "LGPL-2.1-only",
"supports": "!uwp",
"dependencies": [
{
"name": "atlmfc",
"platform": "windows"
},
{
"name": "vcpkg-cmake",
"host": true
Expand All @@ -25,7 +22,13 @@
},
"soundtouchdll": {
"description": "Build the SoundTouchDLL C wrapper dynamic library",
"supports": "!staticcrt"
"supports": "!staticcrt",
"dependencies": [
{
"name": "atlmfc",
"platform": "windows"
}
]
}
}
}
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -9418,7 +9418,7 @@
},
"soundtouch": {
"baseline": "2.4.0",
"port-version": 0
"port-version": 1
},
"soxr": {
"baseline": "0.1.3",
Expand Down
5 changes: 5 additions & 0 deletions versions/s-/soundtouch.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "063ca0a77cd5817901138ad679d249e829afe086",
"version": "2.4.0",
"port-version": 1
},
{
"git-tree": "bc13dd17e35d60c64e0af1b3ee27cbe3b816e7d5",
"version": "2.4.0",
Expand Down