[Add] ZCShareSDK 0.0.12
[CocoaPods.git] / Specs / 5 / d / f / libMachO / 0.1.0 / libMachO.podspec.json
blob3639776595e2299ddad20e064cc90cb97b42565a
2   "name": "libMachO",
3   "version": "0.1.0",
4   "summary": "libMachO is a lightweight, C library for parsing in-memory Mach-O images.",
5   "description": "libMachO is a lightweight, C library for parsing in-memory Mach-O images.\nIt should not be used to parse binaries which have not been loaded into memory\nby the kernel/dyld. To keep the library lightweight libMachO overlays itself\natop the MachO binary and provides a structured set of APIs to parse the data.\nlibMachO does not build up its own independent representation of the Mach-O\nopting to continuously walk the Mach-O structures to access requested data.\nThis means that libMachO generally expects well-formed MachO binaries.",
6   "homepage": "https://github.com/DeVaukz/MachO-Kit",
7   "license": "MIT",
8   "authors": {
9     "Devin Vaukz": "devin.vaukz@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/DeVaukz/MachO-Kit.git",
13     "tag": "0.1.0"
14   },
15   "platforms": {
16     "ios": "7.0",
17     "osx": "10.6",
18     "watchos": "1.0",
19     "tvos": "9.0"
20   },
21   "requires_arc": true,
22   "source_files": "libMachO/**/*",
23   "resources": "libMachO/**/*",
24   "public_header_files": "libMachO/macho.h",
25   "header_mappings_dir": "libMachO/",
26   "xcconfig": {
27     "HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/libMachO/**\"",
28     "CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES": "YES"
29   }