2009-11-25 21:29:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Librsync < Formula
|
2010-09-09 21:25:57 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/librsync/librsync/0.9.7/librsync-0.9.7.tar.gz'
|
2009-11-25 21:29:15 +00:00
|
|
|
homepage 'http://librsync.sourceforge.net/'
|
|
|
|
md5 '24cdb6b78f45e0e83766903fd4f6bc84'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.universal_binary
|
2010-07-04 05:17:12 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2009-11-25 21:29:15 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|