Skip to content

Instantly share code, notes, and snippets.

@kotas
Forked from dataich/phpbrew.rb
Created February 27, 2014 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kotas/9252894 to your computer and use it in GitHub Desktop.
Save kotas/9252894 to your computer and use it in GitHub Desktop.
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