mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 11:42:48 +08:00
[libsamplerate] Initial port
This commit is contained in:
parent
273f35372c
commit
11aba18495
14
ports/libsamplerate/CMakeLists.txt
Normal file
14
ports/libsamplerate/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
add_library(libsamplerate-0
|
||||||
|
samplerate.c
|
||||||
|
src_sinc.c
|
||||||
|
src_zoh.c
|
||||||
|
src_linear.c
|
||||||
|
../Win32/libsamplerate-0.def
|
||||||
|
)
|
||||||
|
|
||||||
|
install(TARGETS libsamplerate-0
|
||||||
|
RUNTIME DESTINATION bin
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
ARCHIVE DESTINATION lib)
|
||||||
|
|
||||||
|
install(FILES samplerate.h DESTINATION include)
|
3
ports/libsamplerate/CONTROL
Normal file
3
ports/libsamplerate/CONTROL
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Source: libsamplerate
|
||||||
|
Version: 0.1.9.0
|
||||||
|
Description: Sample Rate Converter for audio
|
26
ports/libsamplerate/portfile.cmake
Normal file
26
ports/libsamplerate/portfile.cmake
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
include(vcpkg_common_functions)
|
||||||
|
|
||||||
|
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libsamplerate-0.1.9)
|
||||||
|
|
||||||
|
vcpkg_download_distfile(ARCHIVE
|
||||||
|
URLS "http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz"
|
||||||
|
FILENAME "libsamplerate-0.1.9.tar.gz"
|
||||||
|
SHA512 78596657963cbf06785e3e6e1190b093df71da52ca340e75bd8246a962cd79dd1c90fa5527c607cebcb296e2c1ee605015278b274e3b768f2f3fbeb0eadfb728
|
||||||
|
)
|
||||||
|
|
||||||
|
vcpkg_extract_source_archive(${ARCHIVE})
|
||||||
|
|
||||||
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}/src)
|
||||||
|
file(COPY ${SOURCE_PATH}/Win32/config.h DESTINATION ${SOURCE_PATH}/src)
|
||||||
|
|
||||||
|
vcpkg_configure_cmake(
|
||||||
|
SOURCE_PATH ${SOURCE_PATH}/src
|
||||||
|
)
|
||||||
|
|
||||||
|
vcpkg_install_cmake()
|
||||||
|
|
||||||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||||
|
|
||||||
|
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsamplerate RENAME copyright)
|
||||||
|
|
||||||
|
vcpkg_copy_pdbs()
|
Loading…
Reference in New Issue
Block a user