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/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://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
|
|
|
|
2014-05-01 21:08:51 +00:00
|
|
|
bottle do
|
2014-10-19 19:03:29 +00:00
|
|
|
cellar :any
|
|
|
|
revision 1
|
|
|
|
sha1 "d50344d91979822e446a28997c4b25f4c047e405" => :yosemite
|
|
|
|
sha1 "0b7296e9d6d6a3a17268611171df4b944e853bbf" => :mavericks
|
|
|
|
sha1 "e1570018c6ace49b52f2d77a660c7720e6250660" => :mountain_lion
|
2014-05-01 21:08:51 +00:00
|
|
|
end
|
|
|
|
|
2014-04-05 00:38:29 +00:00
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2013-01-21 09:33:56 +00:00
|
|
|
depends_on :python => :optional
|
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
|
2014-04-05 00:38:29 +00:00
|
|
|
ENV.append_path "ACLOCAL_PATH", "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}
|
|
|
|
]
|
2013-01-21 09:33:56 +00:00
|
|
|
args << "--with-python" if build.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
|