class Launch < Formula desc "Command-line launcher for OS X, in the spirit of `open`" homepage "http://web.sabi.net/nriley/software/" head "https://github.com/nriley/launch.git" stable do url "http://sabi.net/nriley/software/launch-1.2.2.tar.gz" sha256 "94509ce5b55a768f3f8da9996193ae01baf78f239a4d0fca637735f2684eed87" # Upstream commits to fix the build on 10.10+ # Remove both patches when upgrading to 1.2.3 patch do url "https://github.com/nriley/launch/commit/622fa2db6f185b4d635e22e90fda6b9741033047.diff" sha256 "ab8ede8c11ff9af389728439ca8ac2197d8de66c712c4f51f7ef794de73f0498" end patch do url "https://github.com/nriley/launch/commit/d3207d853e04bf312cc47d15f35e8a61633deab4.diff" sha256 "24eabf62956d49a4259068a2316b3a03e17598a2137ff3f200f9076cec92f415" end end bottle do cellar :any revision 1 sha256 "a09175831e58a463d93cd455cabdfb44540ee05c97efe394a940c64a689c644b" => :yosemite sha256 "b6509fcd6b4026395974124b4445d005d26728582013afb51e345d7bf0379570" => :mavericks sha256 "f60d39c5fa69188415811aee32405fbd4d730e1da3326c2f9a6d281c5cec2013" => :mountain_lion end depends_on :xcode => :build def install rm_rf "launch" # We'll build it ourself, thanks. xcodebuild "-configuration", "Deployment", "SYMROOT=build", "clean" xcodebuild "-configuration", "Deployment", "SYMROOT=build" man1.install gzip("launch.1") bin.install "build/Deployment/launch" end test do system "#{bin}/launch", "-n", "/" end end