Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Erichin committed Feb 21, 2018
1 parent fec25e3 commit 7d6b054
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions build/pod.podspec
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
Pod::Spec.new do |spec|
spec.name = 'Geth'
spec.version = '{{.Version}}'
spec.version = '1.7.4'
spec.license = { :type => 'GNU Lesser General Public License, Version 3.0' }
spec.homepage = 'https://github.com/ethereum/go-ethereum'
spec.authors = { {{range .Contributors}}
'{{.Name}}' => '{{.Email}}',{{end}}
}
spec.authors = { 'erichin' => 'erichinbato@gmail.com' }

spec.summary = 'iOS Ethereum Client'
spec.source = { :git => 'https://github.com/ethereum/go-ethereum.git', :commit => '{{.Commit}}' }
spec.source = { :git => 'https://github.com/ethereum/go-ethereum.git' }

spec.platform = :ios
spec.ios.deployment_target = '9.0'
spec.ios.vendored_frameworks = 'Frameworks/Geth.framework'

spec.prepare_command = <<-CMD
curl https://gethstore.blob.core.windows.net/builds/{{.Archive}}.tar.gz | tar -xvz
mkdir Frameworks
mv {{.Archive}}/Geth.framework Frameworks
rm -rf {{.Archive}}
CMD
spec.ios.vendored_frameworks = 'bin/Geth.framework'
end

0 comments on commit 7d6b054

Please sign in to comment.