homebrew-core/Formula/talloc.rb
Tim Gray 98938aa835 talloc 2.0.5
Needed for notmuch.  Pretty much taken verbatim from
3197138ef8.
Updates the v2.0.1 formula.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-26 22:28:15 -07:00

16 lines
470 B
Ruby

require 'formula'
class Talloc < Formula
url 'http://www.samba.org/ftp/talloc/talloc-2.0.5.tar.gz'
homepage 'http://talloc.samba.org/'
md5 '6e3fdfbc43dde8ccba27b6af894b8fb2'
def install
system "./configure", "--prefix=#{prefix}"
# See https://bugzilla.samba.org/show_bug.cgi?id=7000
# It seems that the patch included there is not enough
inreplace 'Makefile', 'SONAMEFLAG = #', 'SONAMEFLAG = -install_name'
system "make install"
end
end