Explorar o código

Merge pull request #134 from aceofspades/podspec

Add podspec. Useful to have when doing local mods.
August "Gus" Mueller %!s(int64=13) %!d(string=hai) anos
pai
achega
f66715b8c4
Modificáronse 1 ficheiros con 12 adicións e 0 borrados
  1. 12 0
      fmdb.podspec

+ 12 - 0
fmdb.podspec

@@ -0,0 +1,12 @@
+Pod::Spec.new do |s|
+  s.name     = 'FMDB'
+  s.version  = '2.0'
+  s.summary  = 'A Cocoa / Objective-C wrapper around SQLite.'
+  s.homepage = 'https://github.com/ccgus/fmdb'
+  s.license  = 'MIT'
+  s.author   = { 'August Mueller' => 'gus@flyingmeat.com' }
+  s.source   = { :git => 'https://github.com/ccgus/fmdb.git' }
+
+  s.source_files = FileList['src/FM*.{h,m}'].exclude(/fmdb\.m/)
+  s.library = 'sqlite3'
+end