This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
Pod::Spec.new do |spec| |
|
spec.name = 'glog' |
|
spec.version = '0.3.4' |
|
spec.license = { :type => 'Google', :file => 'COPYING' } |
|
spec.homepage = 'https://github.com/google/glog' |
|
spec.summary = 'Google logging module' |
|
spec.authors = 'Google' |
|
|
|
spec.prepare_command = File.read("../scripts/ios-configure-glog.sh") |
|
spec.source = { :git => 'https://github.com/google/glog.git', |
|
:tag => "v#{spec.version}" } |
|
spec.module_name = 'glog' |
|
spec.header_dir = 'glog' |
|
spec.source_files = 'src/glog/*.h', |
|
'src/demangle.cc', |
|
'src/logging.cc', |
|
'src/raw_logging.cc', |
|
'src/signalhandler.cc', |
|
'src/symbolize.cc', |
|
'src/utilities.cc', |
|
'src/vlog_is_on.cc' |
|
# workaround for https://github.com/facebook/react-native/issues/14326 |
|
spec.preserve_paths = 'src/*.h', |
|
'src/base/*.h' |
|
spec.exclude_files = "src/windows/**/*" |
|
spec.libraries = "stdc++" |
|
spec.pod_target_xcconfig = { "USE_HEADERMAP" => "NO", |
|
"HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/src" } |
|
|
|
# Pinning to the same version as React.podspec. |
|
spec.platforms = { :ios => "8.0", :tvos => "9.2" } |
|
|
|
end
|
|
|