homebrew-core/Formula/rdiff-backup.rb

26 lines
807 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class RdiffBackup < Formula
homepage 'http://rdiff-backup.nongnu.org/'
2012-02-13 00:50:29 +00:00
url 'http://savannah.nongnu.org/download/rdiff-backup/rdiff-backup-1.2.8.tar.gz'
md5 '1a94dc537fcf74d6a3a80bd27808e77b'
depends_on 'librsync'
def install
# Find the arch for the Python we are building against.
# We remove 'ppc' support, so we can pass Intel-optimized CFLAGS.
archs = archs_for_command("python")
2011-03-19 16:50:26 +00:00
archs.remove_ppc!
archs.delete :x86_64 if Hardware.is_32_bit?
2011-03-19 16:50:26 +00:00
ENV['ARCHFLAGS'] = archs.as_arch_flags
system "python", "setup.py", "--librsync-dir=#{prefix}", "build"
libexec.install Dir['build/lib.macosx*/rdiff_backup']
libexec.install Dir['build/scripts-*/*']
man1.install Dir['*.1']
2012-02-13 00:50:29 +00:00
bin.install_symlink Dir["#{libexec}/rdiff-backup*"]
end
end