98938aa835
Needed for notmuch. Pretty much taken verbatim from
3197138ef8
.
Updates the v2.0.1 formula.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
470 B
Ruby
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
|