aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/drush.rb
blob: a5d53046f263fd79d1f759d60fea534b0da32572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Drush < Formula
  homepage 'http://drupal.org/project/drush'
  head 'https://github.com/drush-ops/drush.git'
  url 'https://github.com/drush-ops/drush/archive/6.0.0.tar.gz'
  sha1 'de8b4065f179f6ddfd9c8911c2f818f81ab1f4a4'

  def install
    prefix.install_metafiles
    libexec.install Dir['*'] -['drush.bat']
    bin.install_symlink libexec/'drush'
    bash_completion.install libexec/'drush.complete.sh' => 'drush'
  end
end