Created
October 19, 2012 03:14
-
-
Save richo/3916030 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dep "pear.bin" do | |
on(:ubuntu) do | |
requires "pear.managed" | |
on(:osx) do | |
requires "php53.brew" | |
end | |
end | |
dep "php53.brew" do | |
requires "brew tapped".with("homebrew/dupes") | |
"brew tapped".with("josegonzalez/homebrew-php") | |
end | |
dep "brew tapped", :tap do | |
met? { | |
shell? ("brew tap | grep #{tap}") | |
} | |
meet { | |
shell ("brew tap #{tap}") | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment