f8b550972f
Updating drush from 5.8 to 5.9 Closes Homebrew/homebrew#19310. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
367 B
Ruby
14 lines
367 B
Ruby
require 'formula'
|
|
|
|
class Drush < Formula
|
|
homepage 'http://drupal.org/project/drush'
|
|
url 'http://ftp.drupal.org/files/projects/drush-7.x-5.9.tar.gz'
|
|
sha1 '12533dbc7a18f1fef79a1853a8fdb88171f4fed8'
|
|
|
|
head 'git://git.drupal.org/project/drush.git', :branch => '8.x-6.x'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec/'drush'
|
|
end
|
|
end
|