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