blob: 05f0aa3fc22d6b7110206a3543fbe9ca396d3341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
require 'formula'
class Librsync < Formula
url 'http://downloads.sourceforge.net/project/librsync/librsync/0.9.7/librsync-0.9.7.tar.gz'
homepage 'http://librsync.sourceforge.net/'
sha1 'd575eb5cae7a815798220c3afeff5649d3e8b4ab'
def patches
# fixes librsync doesn't correctly export inlined functions:
# http://trac.macports.org/ticket/31742
# link to upstream bug report:
# http://sourceforge.net/tracker/?func=detail&aid=3464437&group_id=56125&atid=479439
{ :p0 => 'https://trac.macports.org/export/90437/trunk/dports/net/librsync/files/patch-delta.c.diff' }
end
def install
ENV.universal_binary
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
|