5a41f6174f
- Removed drush_make install since it is now included with Drush 7.x-5.0. Closes Homebrew/homebrew#11239. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
335 B
Ruby
13 lines
335 B
Ruby
require 'formula'
|
|
|
|
class Drush < Formula
|
|
homepage 'http://drupal.org/project/drush'
|
|
url 'http://ftp.drupal.org/files/projects/drush-7.x-5.0.tar.gz'
|
|
md5 '5ef98e81b088274b4ad3923823a1858d'
|
|
head 'git://git.drupal.org/project/drush.git'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec+'drush'
|
|
end
|
|
end
|