bup: fix HEAD compile, cleanup, add test

Closes Homebrew/homebrew#37524.
Closes Homebrew/homebrew#37525.

Signed-off-by: Brett Koonce <koonce@gmail.com>
This commit is contained in:
Dominyk Tiller 2015-03-09 04:59:14 +00:00 committed by Brett Koonce
parent 40fdc130b1
commit e2e6f72851

View file

@ -1,26 +1,33 @@
require "formula"
class Bup < Formula
homepage "https://github.com/bup/bup"
head "https://github.com/bup/bup.git"
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)"
stable do
url "https://github.com/bup/bup/archive/0.26.tar.gz"
sha256 "8c25551fa723cfe5dcaaa671c5f0964d8caff22b068923df007a13169d8f015c"
# Fix compilation on 10.10
patch do
url "https://github.com/bup/bup/commit/75d089e7cdb7a7eb4d69c352f56dad5ad3aa1f97.diff"
sha256 "9a4615e91b7b2f43e5447e30aa4096f1b0bf65dc2081e7c08d852830ee217716"
end
end
option "with-tests", "Run unit tests after compilation"
option "with-pandoc", "Build and install the manpages"
deprecated_option "run-tests" => "with-tests"
depends_on "pandoc" => [:optional, :build]
# 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
system "make"
system "make test" if build.include? "run-tests"
system "make", "test" if build.with? "tests"
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
end
test do
system bin/"bup", "init"
assert File.exist?("#{testpath}/.bup")
end
end