From 5ec15d2043713640dbfb734ce01952db24ba2009 Mon Sep 17 00:00:00 2001 From: Ariel Elkin Date: Sun, 12 Apr 2020 11:32:38 +0100 Subject: [PATCH] updated podspec for release 4.6.1 --- STK.podspec | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 STK.podspec diff --git a/STK.podspec b/STK.podspec new file mode 100644 index 0000000..6331db6 --- /dev/null +++ b/STK.podspec @@ -0,0 +1,50 @@ +Pod::Spec.new do |spec| + spec.name = 'STK' + spec.version = '4.6.1' + spec.summary = 'The Synthesis ToolKit in C++ is a set of open source audio signal processing and algorithmic synthesis classes.' + spec.homepage = 'https://ccrma.stanford.edu/software/stk/' + spec.source = { :git => 'https://github.com/thestk/stk.git', :tag => spec.version } + spec.license = { :type => 'MIT' } + spec.author = { "Ariel Elkin" => "ariel@arivibes.com" } + spec.platform = :ios + spec.ios.deployment_target = "10.0" + spec.source_files = [ + "src/*.cpp", + "include/*.h" + ] + spec.public_header_files = [ + "include/*.h", + "include/SKINImsg.h", + "include/SKINItbl.h" + ] + spec.exclude_files = [ + "include/Thread.h", + "src/Thread.cpp", + "include/Mutex.h", + "src/Mutex.cpp", + "include/UdpSocket.h", + "src/UdpSocket.cpp", + "include/Socket.h", + "src/Socket.cpp", + "include/TcpClient.h", + "src/TcpClient.cpp", + "include/TcpServer.h", + "src/TcpServer.cpp", + "include/InetWvIn.h", + "src/InetWvIn.cpp", + "include/InetWvOut.h", + "src/InetWvOut.cpp", + "include/RtAudio.h", + "src/RtAudio.cpp", + "include/RtMidi.h", + "src/RtMidi.cpp", + "include/RtWvIn.h", + "src/RtWvIn.cpp", + "include/RtWvOut.h", + "src/RtWvOut.cpp", + "include/RtError.h" + ] + spec.preserve_paths = "README.MD" + spec.resource_bundles = { "rawwaves": "rawwaves/*.raw" } + spec.libraries = 'c++' +end