brew/Formula/ack.rb

25 lines
528 B
Ruby
Raw Normal View History

2009-05-22 00:24:53 +01:00
$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks
require 'brewkit'
require 'fileutils'
homepage='http://betterthangrep.com/'
class UncompressedFormula < Formula
def initialize
@name='ack'
@version='1.88'
@url='http://ack.googlecode.com/svn/tags/1.88/ack'
@md5='8009a13ab0fc66047bea0ea2ad89419c'
end
def uncompress path
path.dirname
end
end
UncompressedFormula.new.brew do |prefix|
bin=prefix+'bin'
FileUtils.mkpath bin
FileUtils.cp 'ack', bin
2009-05-22 14:02:57 +01:00
`chmod u+x #{bin}/ack`
2009-05-22 00:24:53 +01:00
end