2010-05-06 03:07:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libdnet < Formula
|
2010-05-06 03:07:06 +00:00
|
|
|
homepage 'http://code.google.com/p/libdnet/'
|
2012-07-07 18:08:22 +00:00
|
|
|
url 'http://libdnet.googlecode.com/files/libdnet-1.12.tgz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '71302be302e84fc19b559e811951b5d600d976f8'
|
2010-05-06 03:07:06 +00:00
|
|
|
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2012-02-27 03:44:55 +00:00
|
|
|
|
2012-08-13 21:04:55 +00:00
|
|
|
option 'with-python', 'Build Python module'
|
2012-03-13 03:55:07 +00:00
|
|
|
|
2010-05-06 03:07:06 +00:00
|
|
|
def install
|
2012-05-10 07:34:31 +00:00
|
|
|
# autoreconf to get '.dylib' extension on shared lib
|
|
|
|
ENV['ACLOCAL'] = 'aclocal -I config'
|
|
|
|
system 'autoreconf', '-ivf'
|
2011-10-17 23:37:02 +00:00
|
|
|
|
2012-05-10 07:34:31 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--mandir=#{man}
|
|
|
|
]
|
2012-08-21 20:41:53 +00:00
|
|
|
args << "--with-python" if build.include? "with-python"
|
2012-03-13 03:55:07 +00:00
|
|
|
system "./configure", *args
|
2010-05-06 03:07:06 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|