4acb9e72bb
Closes Homebrew/homebrew#18796. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
422 B
Ruby
18 lines
422 B
Ruby
require 'formula'
|
|
|
|
class Makedepend < Formula
|
|
homepage 'https://github.com/ioerror/makedepend/'
|
|
url 'https://github.com/ioerror/makedepend/archive/0.2.tar.gz'
|
|
sha1 '85b3b2a53b401b8bd5be19443960acb1367d3055'
|
|
head 'https://github.com/ioerror/makedepend.git'
|
|
|
|
def install
|
|
bin.mkpath
|
|
ENV['DESTDIR'] = prefix
|
|
system 'make', 'install'
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/makedepend", "--version"
|
|
end
|
|
end
|