homebrew-core/Formula/drush.rb

16 lines
440 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Drush < Formula
homepage 'http://drupal.org/project/drush'
url 'http://ftp.drupal.org/files/projects/drush-8.x-6.0-beta1.tar.gz'
2013-06-01 19:50:22 +00:00
sha1 'e7f24717a3b4d5e07df7a9708ff0540f8aae2968'
head 'git://git.drupal.org/project/drush.git', :branch => '8.x-6.x'
def install
2012-03-11 03:51:20 +00:00
libexec.install Dir['*']
bin.install_symlink libexec/'drush'
bash_completion.install libexec/'drush.complete.sh' => 'drush'
end
end