88779ade49
Closes Homebrew/homebrew#14653.
21 lines
540 B
Ruby
21 lines
540 B
Ruby
require 'formula'
|
|
|
|
class Foremost < Formula
|
|
url 'http://foremost.sourceforge.net/pkg/foremost-1.5.7.tar.gz'
|
|
homepage 'http://foremost.sourceforge.net/'
|
|
sha1 'c26d68990d7bd5245d5f7dc83c9217642a7a2056'
|
|
|
|
def install
|
|
inreplace "Makefile" do |s|
|
|
s.gsub! "/usr/", "#{prefix}/"
|
|
s.change_make_var! "RAW_CC", ENV.cc
|
|
s.change_make_var! "RAW_FLAGS", ENV.cflags
|
|
end
|
|
|
|
system "make mac"
|
|
|
|
bin.install "foremost"
|
|
man8.install "foremost.8.gz"
|
|
etc.install "foremost.conf" => "foremost.conf.sample"
|
|
end
|
|
end
|