require 'formula' class PebbleSdk < Formula homepage 'https://developer.getpebble.com/2/' url 'https://s3.amazonaws.com/assets.getpebble.com/sdk2/PebbleSDK-2.2.tar.gz' sha1 '762ac37470cae308be38c0d2dfa7fc15c67303d4' bottle do sha1 "a0b31517110e68148ec1bb395533c8d260bd52ae" => :mavericks sha1 "28de175c4ec571a53f522763b1e7f137de5515b0" => :mountain_lion end depends_on :macos => :mountain_lion depends_on 'freetype' => :recommended depends_on 'mpfr' => :build depends_on 'gmp' => :build depends_on 'libmpc' => :build depends_on 'libelf' => :build depends_on 'texinfo' => :build # List of resources can be obtained from requirements.txt resource 'freetype-py' do url 'https://pypi.python.org/packages/source/f/freetype-py/freetype-py-1.0.tar.gz' sha1 '3830e45ff9e9a96f1e209d786cbd5492f168127a' end resource 'sh' do url 'https://pypi.python.org/packages/source/s/sh/sh-1.08.tar.gz' sha1 '85ca7f0fd69af238cdca94aa3a87f050ad7b11e9' end resource 'twisted' do url 'https://pypi.python.org/packages/source/T/Twisted/Twisted-12.0.0.tar.bz2' sha1 '64b7f7fdeefbd4dd8e6bdffb12d9095106ee3d5d' end resource 'autobahn' do url 'https://pypi.python.org/packages/source/a/autobahn/autobahn-0.5.14.zip' sha1 '475ba5f281bdcc50858c6920c034a1a067b2ce2a' end resource 'websocket-client' do url 'https://pypi.python.org/packages/source/w/websocket-client/websocket-client-0.12.0.tar.gz' sha1 '2c132d1a185ea55bfccde734507158fefc336f91' end resource 'pyserial' do url 'https://pypi.python.org/packages/source/p/pyserial/pyserial-2.6.tar.gz' sha1 '39e6d9a37b826c48eab6959591a174135fc2873c' end resource 'pypng' do url 'https://pypi.python.org/packages/source/p/pypng/pypng-0.0.16.tar.gz' sha1 'f90a1f88a7875f019b1fc0addde5410ce6daf2dd' end resource 'pebble-arm-toolchain' do url 'https://github.com/pebble/arm-eabi-toolchain/archive/v2.0.tar.gz' sha1 '7085c6ef371213e3e766a1cbd7e6e1951ccf1d87' end def install inreplace 'bin/pebble' do |s| # This replacement fixes a path that gets messed up because of the # bin.env_script_all_files call (which relocates actual pebble.py script # to libexec/, causing problems with the absolute path expected below). s.gsub! /^script_path = .*?$/m, "script_path = '#{libexec}/../tools/pebble.py'" # This replacement removes environment settings that were needed only # if installation was done with the official script s.gsub! /^local_python_env.*?=.*?\(.*?\)$/m, "" s.gsub! /^process = subprocess\.Popen\(args, shell=False, env=local_python_env\)/, "process = subprocess.Popen(args, shell=False)" end ENV["PYTHONPATH"] = lib+"python2.7/site-packages" ENV.prepend_create_path 'PYTHONPATH', libexec+'lib/python2.7/site-packages' install_args = [ "setup.py", "install", "--prefix=#{libexec}" ] resource('freetype-py').stage { system "python", *install_args } resource('sh').stage { system "python", *install_args } resource('twisted').stage { system "python", *install_args } resource('autobahn').stage { system "python", *install_args } resource('websocket-client').stage { system "python", *install_args } resource('pyserial').stage { system "python", *install_args } resource('pypng').stage { system "python", *install_args } doc.install %w[Documentation Examples PebbleKit-Android PebbleKit-iOS README.txt] prefix.install %w[Pebble bin tools requirements.txt version.txt] resource('pebble-arm-toolchain').stage do system "make", "PREFIX=#{prefix}/arm-cs-tools", "install-cross" end bin.env_script_all_files(libexec+'bin', :PYTHONPATH => ENV['PYTHONPATH']) end test do system bin/'pebble', 'new-project', 'test' cd 'test' do # We have to remove the default /usr/local/include from the CPATH # because the toolchain has -Werror=poison-system-directories set ENV['CPATH'] = '' system bin/'pebble', 'build' end end def caveats; <<-EOS.undent Documentation, examples and Android/iOS kits can be found in #{doc} EOS end end