32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
class Foremost < Formula
|
|
desc "Console program to recover files based on their headers and footers"
|
|
homepage "https://foremost.sourceforge.io/"
|
|
url "https://foremost.sourceforge.io/pkg/foremost-1.5.7.tar.gz"
|
|
sha256 "502054ef212e3d90b292e99c7f7ac91f89f024720cd5a7e7680c3d1901ef5f34"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "3812c7a8acb32b12fab03912fd373437187558cedaa42d46e9683f890034b5dc" => :mojave
|
|
sha256 "77429923aeac124b53330a69e09c03fcbe75d56f1ed9668db39ddc2e0ddace7a" => :high_sierra
|
|
sha256 "1fec9cd62de192dcbd5217cfa2c6c1c1ca056afa85a434114748171bf740ed96" => :sierra
|
|
sha256 "73f4f781edd9621d498238d77536dda5fbfa60dbb613bd7f15bb31d72699c986" => :el_capitan
|
|
end
|
|
|
|
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.default"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/foremost", "-V"
|
|
end
|
|
end
|