forked from AloneMonkey/MonkeyDevSpecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCydiaSubstrate.podspec
21 lines (19 loc) · 991 Bytes
/
CydiaSubstrate.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = "CydiaSubstrate"
spec.version = "1.0.0"
spec.summary = "CydiaSubstrate for MonkeyDev"
spec.description = <<-DESC
- CydiaSubstrate for MonkeyDev
DESC
spec.homepage = "https://github.com/AloneMonkey/MonkeyDev"
spec.license = { :type => "BSD", :file => "LICENSE" }
spec.author = { "AloneMonkey" => "[email protected]" }
spec.social_media_url = "http://weibo.com/xiaoqing28"
spec.platform = :ios, "8.0"
spec.source = { :http => "https://github.com/AloneMonkey/MonkeyDevPod/raw/master/CydiaSubstrate/CydiaSubstrate.zip"}
spec.vendored_libraries = 'libsubstrate.dylib'
spec.source_files = "**/*.{h,m}"
spec.public_header_files = "include/CydiaSubstrate.h"
spec.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lsubstrate' }
spec.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "No" }
end