diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/iowa-hills-dsp | |
Diffstat (limited to 'vcpkg/ports/iowa-hills-dsp')
| -rw-r--r-- | vcpkg/ports/iowa-hills-dsp/portfile.cmake | 17 | ||||
| -rw-r--r-- | vcpkg/ports/iowa-hills-dsp/vcpkg.json | 13 |
2 files changed, 30 insertions, 0 deletions
diff --git a/vcpkg/ports/iowa-hills-dsp/portfile.cmake b/vcpkg/ports/iowa-hills-dsp/portfile.cmake new file mode 100644 index 0000000..f17b875 --- /dev/null +++ b/vcpkg/ports/iowa-hills-dsp/portfile.cmake @@ -0,0 +1,17 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO hayguen/iowahills_dsp + REF "v${VERSION}" + SHA512 095fecb1a4bf074a3e11da7e6edaba4d375c5603bed5f2578b52f900dbd20ac59f2414a8f9432eba1742807fe8553cc1edd63606fc38400cdda77bf32ee49eb1 + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/iowa-hills-dsp/vcpkg.json b/vcpkg/ports/iowa-hills-dsp/vcpkg.json new file mode 100644 index 0000000..bbb9622 --- /dev/null +++ b/vcpkg/ports/iowa-hills-dsp/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "iowa-hills-dsp", + "version": "0.1.0", + "description": "A platform-independent C/C++ library with many DSP (digital signal processing) functions, amongst also FIR and IIR filter design - but also FFT, DFT, Goertzel and Windowing functions.", + "homepage": "https://github.com/hayguen/iowahills_dsp", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |