4 "summary": "Tor.framework is the easiest way to embed Tor in your iOS application.",
5 "description": "Tor.framework is the easiest way to embed Tor in your iOS application. Currently, the framework compiles in static versions of tor, libevent, openssl, and liblzma.",
6 "homepage": "https://github.com/iCepa/Tor.framework",
11 "Conrad Kramer": "conrad@conradkramer.com",
12 "Chris Ballinger": "chris@chatsecure.org",
13 "Mike Tigas": "mike@tig.as",
14 "Benjamin Erhart": "berhart@netzarchitekten.com"
17 "http": "https://github.com/iCepa/Tor.framework/releases/download/v406.8.2/Tor.framework.zip",
25 "prepare_command": "touch geoip\ntouch geoip6",
26 "default_subspecs": "Core",
32 "vendored_frameworks": "Build/iOS/Tor.framework"
35 "vendored_frameworks": "Build/Mac/Tor.framework"
37 "preserve_paths": "**/*.bcsymbolmap"
47 "name": "Load GeoIP files",
48 "execution_position": "before_compile",
49 "script": " if [ ! -f \"$PODS_TARGET_SRCROOT/geoip\" ] || test `find \"$PODS_TARGET_SRCROOT\" -name geoip -empty` || test `find \"$PODS_TARGET_SRCROOT\" -name geoip -mtime +1`\n then\n curl -Lo \"$PODS_TARGET_SRCROOT/geoip\" https://gitweb.torproject.org/tor.git/plain/src/config/geoip?h=tor-0.4.6.8\n fi\n\n if [ ! -f \"$PODS_TARGET_SRCROOT/geoip6\" ] || test `find \"$PODS_TARGET_SRCROOT\" -name geoip6 -empty` || test `find \"$PODS_TARGET_SRCROOT\" -name geoip6 -mtime +1`\n then\n curl -Lo \"$PODS_TARGET_SRCROOT/geoip6\" https://gitweb.torproject.org/tor.git/plain/src/config/geoip6?h=tor-0.4.6.8\n fi\n"