blob: 6085c1d354695d734f8ab54b37b4fcd4b27c035c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
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
  |