homebrew-core/Formula/drush.rb

15 lines
345 B
Ruby

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