homebrew-core/Formula/darcs.rb
2015-11-20 04:35:23 +00:00

39 lines
1.1 KiB
Ruby

require "language/haskell"
class Darcs < Formula
include Language::Haskell::Cabal
desc "Distributed version control system that tracks changes, via Haskell"
homepage "http://darcs.net/"
url "http://darcs.net/releases/darcs-2.10.2.tar.gz"
sha256 "6337d3fac04711fa2ef5813558b409c59166c5599b0c9d68c418d21cdccfb327"
bottle do
sha256 "7233b3d0fd8fbae5c3dd6f8229fd2755ce047961c6692eaeeb63064f7184fd29" => :el_capitan
sha256 "62a0c990b8585130d6c8955d2884ec07030dd1b3c5b0f711126a9dd9b5762d02" => :yosemite
sha256 "edd6a36b7146e20cf5a6a3bbe70737f6013f855bbb881523bdf460e416d9626a" => :mavericks
end
depends_on "ghc" => :build
depends_on "cabal-install" => :build
depends_on "gmp"
setup_ghc_compilers
def install
install_cabal_package
end
test do
mkdir "my_repo" do
system "darcs", "init"
(Pathname.pwd/"foo").write "hello homebrew!"
system "darcs", "add", "foo"
system "darcs", "record", "-am", "add foo", "--author=homebrew"
end
system "darcs", "get", "my_repo", "my_repo_clone"
Dir.chdir "my_repo_clone" do
assert_match "hello homebrew!", (Pathname.pwd/"foo").read
end
end
end