mirror of
https://github.com/thestk/stk
synced 2026-01-11 12:01:52 +00:00
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
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
|