aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libident.rb
blob: c6f3426faf4631828631df7e9951354e5463a0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Libident < Formula
  homepage 'http://www.remlab.net/libident/'
  url 'http://www.remlab.net/files/libident/libident-0.32.tar.gz'
  sha1 '4658807b017f21928a64f3442ee3a2b91f48d14e'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end