Last active
March 31, 2017 02:31
-
-
Save shsteven/4e7d6942e4a4a53f18ff0db98942e406 to your computer and use it in GitHub Desktop.
This podspec is used to include license attribution for Draco
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 podspec is used to include license attribution for Draco | |
Pod::Spec.new do |s| | |
s.name = 'Draco' | |
s.version = '0.9.0' | |
s.summary = 'Draco is a library for compressing and decompressing 3D geometric meshes and point clouds. It is intended to improve the storage and transmission of 3D graphics.' | |
s.homepage = 'https://github.com/google/draco' | |
s.license = { :type => 'Apache2', :file => 'LICENSE' } | |
s.author = 'Google Inc' | |
s.source = { :git => 'https://github.com/google/draco.git', :branch => 'master' } | |
s.ios.deployment_target = '9.0' | |
s.preserve_path = 'LICENSE' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment