-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breaking toxcore podspec to toxcore and toxav
- Loading branch information
Showing
4 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# Be sure to run `pod lib lint toxcore.podspec' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# Any lines starting with a # are optional, but encouraged | ||
# | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "toxav" | ||
s.version = "0.0.1-adab1e3" | ||
s.summary = "Cocoapods wrapper for toxav" | ||
s.homepage = "https://github.com/Antidote-for-Tox/toxcore" | ||
s.license = 'GPLv3' | ||
s.author = { "Dmytro Vorobiov" => "d@dvor.me" } | ||
s.source = { | ||
:git => "https://github.com/Antidote-for-Tox/toxcore.git", | ||
:tag => s.version.to_s, | ||
:submodules => true | ||
} | ||
|
||
s.ios.deployment_target = '7.0' | ||
s.osx.deployment_target = '10.9' | ||
s.requires_arc = true | ||
|
||
# Preserve the layout of headers in the toxcore directory | ||
s.header_mappings_dir = 'toxcore' | ||
|
||
s.source_files = 'toxcore/toxav/*.{m,h}' | ||
|
||
s.dependency 'libopus-patched-config', '1.1' | ||
|
||
s.ios.vendored_frameworks = 'ios/vpx.framework' | ||
s.osx.vendored_frameworks = 'osx/vpx.framework' | ||
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"${PODS_ROOT}"'} | ||
|
||
s.dependency 'toxcore', s.version.to_s | ||
|
||
end |
Submodule toxcore
updated
9 files
+1 −4 | README.md | |
+88 −0 | includes.patch | |
+1 −1 | other/fun/sign.c | |
+1 −1 | other/fun/strkey.c | |
+2 −0 | patch-toxcore.sh | |
+1 −1 | toxav/codec.h | |
+1 −1 | toxav/group.h | |
+1 −1 | toxcore/crypto_core.h | |
+1 −1 | toxcore/network.m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters