Skip to content

Instantly share code, notes, and snippets.

@misterfifths
Created September 14, 2015 14:50
Show Gist options
  • Save misterfifths/534e62072f703e0947bc to your computer and use it in GitHub Desktop.
Save misterfifths/534e62072f703e0947bc to your computer and use it in GitHub Desktop.
{
"name": "ObjectiveGit",
"version": "0.8.7",
"summary": "Objective-C bindings to libgit2.",
"homepage": "https://github.com/libgit2/objective-git",
"license": "MIT",
"authors": {
"Tim Clem": "[email protected]",
"Josh Abernathy": "[email protected]"
},
"source": {
"git": "https://github.com/misterfifths/objective-git.git",
"branch": "master",
"submodules": true
},
"source_files": [ "ObjectiveGit/*.{h,m}", "ObjectiveGit/Categories/*.{h,m}" ],
"osx": {
"libraries": [
"ssl",
"crypto",
"z"
]
},
"ios": {
"libraries": [
"z"
]
},
"requires_arc": true,
"platforms": {
"ios": "5.0",
"osx": "10.6"
},
"description": " Objective Git provides Objective-C bindings to the libgit2 linkable C Git library.\n This library follows the rugged API as close as possible while trying to maintain a native objective-c feel.\n",
"subspecs": [
{
"name": "git2",
"source_files": [
"External/libgit2/src/**/*.{c,h}",
"External/libgit2/deps/http-parser/*.{c,h}"
],
"exclude_files": ["**/*{inttypes,stdint}*", "**/win32/**", "**/tests/**", "**/*win32*"],
"libraries": "z",
"xcconfig": {
"CLANG_ENABLE_MODULES": "NO",
"USER_HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/objective-git/External/libgit2/include\"",
"GCC_PREPROCESSOR_DEFINITIONS": "GIT_SECURE_TRANSPORT=1"
},
"public_header_files": [
"External/libgit2/include/**/*.h"
],
"preserve_paths": ["External/libgit2/include/*", "External/libgit2/include/**/*"],
"header_mappings_dir": "External/libgit2/include"
}
],
"dependencies": [
"libextobjc"
],
"prefix_header_contents": "#define GTLog(fmt, ...) NSLog((@\"%s [Line %d] \" fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment