aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKeenan Brock2014-04-19 23:01:59 -0400
committerAdam Vandenberg2014-04-20 20:28:32 -0700
commit6563cf437f775af9df725416ce525b1f3f1b139e (patch)
treed0b246842ccc9047c6ac0d49e2c081936c0e7f24 /Library/Formula
parent59555ae22864f20d6c4ef02f64c5ce2e26321a37 (diff)
downloadhomebrew-6563cf437f775af9df725416ce525b1f3f1b139e.tar.bz2
tevent 0.9.21
add new formula for tevent 0.9.21 Closes #28541. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tevent.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/tevent.rb b/Library/Formula/tevent.rb
new file mode 100644
index 000000000..d3bca0c4c
--- /dev/null
+++ b/Library/Formula/tevent.rb
@@ -0,0 +1,20 @@
+require "formula"
+
+class Tevent < Formula
+ homepage "http://tevent.samba.org/"
+ url "http://www.samba.org/ftp/tevent/tevent-0.9.21.tar.gz"
+ sha1 "daa1a4f457773be2e0f645beede93db6943224a5"
+
+ 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"
+ system "make install"
+ end
+end