File: STK.podspec

package info (click to toggle)
stk 4.6.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,756 kB
  • sloc: cpp: 32,341; ansic: 3,216; sh: 2,900; tcl: 2,444; perl: 114; objc: 60; makefile: 44
file content (55 lines) | stat: -rw-r--r-- 1,640 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 # To lint the spec:
 # pod spec lint --skip-import-validation --allow-warnings
 # To publish:
 # pod trunk push STK.podspec --skip-import-validation --allow-warnings

Pod::Spec.new do |spec|
  spec.name         = 'STK'
  spec.version      = '4.6.2'
  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