aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdnet.rb
blob: 2d75459a6024c40a16e367b63ae292683a526300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Libdnet < Formula
  url 'http://libdnet.googlecode.com/files/libdnet-1.12.tgz'
  homepage 'http://code.google.com/p/libdnet/'
  md5 '9253ef6de1b5e28e9c9a62b882e44cc9'

  def install
    # "manual" autoreconf to get '.dylib' extension on shared lib
    system "aclocal --force -I config"
    system "glibtoolize --copy --force"
    system "autoconf --force"
    system "autoheader --force"
    system "automake --add-missing --copy --force-missing"

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