2014-04-20 03:01:59 +00:00
|
|
|
class Tevent < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Event system based on the talloc memory management library"
|
2014-04-20 03:01:59 +00:00
|
|
|
homepage "http://tevent.samba.org/"
|
|
|
|
url "http://www.samba.org/ftp/tevent/tevent-0.9.21.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "f2be7463573dab2d8210cb57fe7e7e2aeb323274cbdc865a6e29ddcfb977f0f4"
|
2014-04-20 03:01:59 +00:00
|
|
|
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "talloc"
|
|
|
|
|
|
|
|
conflicts_with "samba", :because => "both install `include/tevent.h`"
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-rpath",
|
|
|
|
"--without-gettext",
|
|
|
|
"--bundled-libraries=!talloc"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2014-04-20 03:01:59 +00:00
|
|
|
end
|
|
|
|
end
|