choose-gui 1.0 (new formula)
This commit is contained in:
parent
0ed4cce5e0
commit
9e44867719
1 changed files with 20 additions and 0 deletions
20
Formula/choose-gui.rb
Normal file
20
Formula/choose-gui.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
class ChooseGui < Formula
|
||||
desc "Fuzzy matcher that uses std{in,out} and a native GUI"
|
||||
homepage "https://github.com/sdegutis/choose"
|
||||
url "https://github.com/sdegutis/choose/archive/1.0.tar.gz"
|
||||
sha256 "b1d16c6e143e2a9e9b306cd169ce54535689321d8f016308ff26c82c3d2931bf"
|
||||
|
||||
depends_on :macos => :yosemite
|
||||
depends_on :xcode => :build
|
||||
|
||||
conflicts_with "choose", :because => "both install a `choose` binary"
|
||||
|
||||
def install
|
||||
xcodebuild "SDKROOT=", "SYMROOT=build"
|
||||
bin.install "build/Release/choose"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/choose", "-h"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue