29 lines
686 B
Ruby
29 lines
686 B
Ruby
require 'formula'
|
|
|
|
class Libdnet < Formula
|
|
homepage 'http://code.google.com/p/libdnet/'
|
|
url 'http://libdnet.googlecode.com/files/libdnet-1.12.tgz'
|
|
md5 '9253ef6de1b5e28e9c9a62b882e44cc9'
|
|
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
|
|
def options
|
|
[['--with-python', 'Build Python module.']]
|
|
end
|
|
|
|
def install
|
|
# autoreconf to get '.dylib' extension on shared lib
|
|
ENV['ACLOCAL'] = 'aclocal -I config'
|
|
system 'autoreconf', '-ivf'
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
]
|
|
args << "--with-python" if ARGV.include? "--with-python"
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|