blob: 2e4fb07b3ca28c8344ead5ac4f101a941a25781d (
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.8.tar.gz'
sha1 'd4578feb4be3143d08045c2c55d80e5905315e03'
head 'git://git.drupal.org/project/drush.git'
def install
libexec.install Dir['*']
bin.install_symlink libexec/'drush'
end
end
|