blob: 7bfe63198310f1f4fda514ea8b1df09500cdb0b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|