diff options
| author | Erik Aigner | 2014-01-08 17:44:49 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-19 11:30:41 -0700 |
| commit | 601c4df776eb38c2bfeda63c896c370270b623b5 (patch) | |
| tree | 950f308ac604fcbc6af88f086ea88a17407313b3 /Library/Formula | |
| parent | cb71057adf2a7f7a9c911da4ac4b8ca3059aa489 (diff) | |
| download | homebrew-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.rb | 20 |
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 |
