Skip to content

Instantly share code, notes, and snippets.

@dataich
Created March 27, 2012 13:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dataich/2215820 to your computer and use it in GitHub Desktop.
Save dataich/2215820 to your computer and use it in GitHub Desktop.
Formula for phpbrew
require 'formula'
class Phpbrew < Formula
head 'https://raw.github.com/c9s/phpbrew/master/phpbrew'
homepage 'https://github.com/c9s/phpbrew'
def install
system "chmod a+x phpbrew"
system "mkdir -p #{prefix}/bin"
system "cp phpbrew #{prefix}/bin"
end
def test
system "phpbrew --version"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment