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'
|
2012-11-13 03:34:57 +00:00
|
|
|
url 'http://ftp.drupal.org/files/projects/drush-7.x-5.8.tar.gz'
|
2012-11-13 05:26:45 +00:00
|
|
|
sha1 'd4578feb4be3143d08045c2c55d80e5905315e03'
|
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
|