2010-07-16 10:58:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Drush < Formula
|
2010-07-16 10:58:51 +00:00
|
|
|
homepage 'http://drupal.org/project/drush'
|
2013-04-19 20:40:28 +00:00
|
|
|
url 'http://ftp.drupal.org/files/projects/drush-7.x-5.9.tar.gz'
|
|
|
|
sha1 '12533dbc7a18f1fef79a1853a8fdb88171f4fed8'
|
2012-08-09 15:41:59 +00:00
|
|
|
|
2012-12-20 03:06:00 +00:00
|
|
|
head 'git://git.drupal.org/project/drush.git', :branch => '8.x-6.x'
|
2010-07-16 10:58:51 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-11 03:51:20 +00:00
|
|
|
libexec.install Dir['*']
|
2012-08-09 15:41:59 +00:00
|
|
|
bin.install_symlink libexec/'drush'
|
2010-07-16 10:58:51 +00:00
|
|
|
end
|
|
|
|
end
|