homebrew-core/Formula/librsync.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

37 lines
1.1 KiB
Ruby

class Librsync < Formula
desc "Library that implements the rsync remote-delta algorithm"
homepage "http://librsync.sourceforge.net/"
url "https://downloads.sourceforge.net/project/librsync/librsync/0.9.7/librsync-0.9.7.tar.gz"
sha256 "6633e4605662763a03bb6388529cbdfd3b11a9ec55b8845351c1bd9a92bc41d6"
bottle do
cellar :any
revision 1
sha1 "754e34fcd1236debb7152e61204364deaa108855" => :yosemite
sha1 "3e79aad6623c2332eaa5c650bc9b28e4caf56b9e" => :mavericks
sha1 "a0a54b67a85e2e626a4eb9e11b9222afe44351a0" => :mountain_lion
end
option :universal
depends_on "popt"
def install
ENV.universal_binary if build.universal?
ENV.append "CFLAGS", "-std=gnu89"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--enable-shared"
inreplace "libtool" do |s|
s.gsub! /compiler_flags=$/, "compiler_flags=' #{ENV.cflags}'"
s.gsub! /linker_flags=$/, "linker_flags=' #{ENV.ldflags}'"
end
system "make", "install"
end
end