aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorErik Aigner2014-01-08 17:44:49 +0100
committerAdam Vandenberg2014-04-19 11:30:41 -0700
commit601c4df776eb38c2bfeda63c896c370270b623b5 (patch)
tree950f308ac604fcbc6af88f086ea88a17407313b3 /Library/Formula
parentcb71057adf2a7f7a9c911da4ac4b8ca3059aa489 (diff)
downloadhomebrew-601c4df776eb38c2bfeda63c896c370270b623b5.tar.bz2
libopendkim 2.9.2
Closes #25739. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libopendkim.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/libopendkim.rb b/Library/Formula/libopendkim.rb
new file mode 100644
index 000000000..330510b3f
--- /dev/null
+++ b/Library/Formula/libopendkim.rb
@@ -0,0 +1,20 @@
+require "formula"
+
+class Libopendkim < Formula
+ homepage "http://opendkim.org"
+ url "http://downloads.sourceforge.net/project/opendkim/opendkim-2.9.2.tar.gz"
+ sha1 "6d6720e60ffe44a689de6732d10e7aba26e24b06"
+
+ depends_on "unbound"
+
+ def install
+ # --dsiable-filter: not needed for the library build
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}",
+ "--disable-filter",
+ "--with-unbound=#{Formula['unbound'].opt_prefix}"
+ system "make", "install"
+ end
+end