homebrew-core/Formula/makedepend.rb

19 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