homebrew-core/Formula/bup.rb

27 lines
829 B
Ruby
Raw Normal View History

2014-07-21 02:22:28 +00:00
require "formula"
class Bup < Formula
2014-07-21 02:22:28 +00:00
homepage "https://github.com/bup/bup"
2014-12-03 22:44:40 +00:00
head "https://github.com/bup/bup.git"
2014-07-21 02:22:28 +00:00
url "https://github.com/bup/bup/archive/0.26.tar.gz"
sha1 "86e636818590fe40e1074c67545bb74de6e8306b"
option "run-tests", "Run unit tests after compilation"
option "with-pandoc", "build and install the manpage (depends on pandoc)"
2014-12-16 12:29:32 +00:00
depends_on "pandoc" => [:optional, :build]
2014-10-12 19:31:28 +00:00
# Fix compilation on 10.10
# https://github.com/bup/bup/commit/75d089e7cdb7a7eb4d69c352f56dad5ad3aa1f97
patch do
url "https://github.com/bup/bup/commit/75d089e7cdb7a7eb4d69c352f56dad5ad3aa1f97.diff"
sha1 "a97d4292a7398d0bca2eb2ea0a99fb40a049c178"
end
def install
2014-01-04 13:02:46 +00:00
system "make"
system "make test" if build.include? "run-tests"
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
end
end