aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/blazeblogger.rb
blob: 60be10aca07f02db7269f8a34e4689192685b601 (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
class Blazeblogger < Formula
  homepage "http://blaze.blackened.cz/"
  url "https://blazeblogger.googlecode.com/files/blazeblogger-1.2.0.tar.gz"
  sha1 "280894fca6594d0c0df925aa0a16b9116ee19f17"

  bottle do
    cellar :any
    sha1 "2576ceff864dd2059bcd73af26f735725dd7274c" => :yosemite
    sha1 "068b94d384d5820938c4561df7357ae116bf23c4" => :mavericks
    sha1 "da491de4ea179354dcb8345b244d36fec30c0c6a" => :mountain_lion
  end

  def install
    # https://code.google.com/p/blazeblogger/issues/detail?id=51
    ENV.deparallelize
    system "make", "prefix=#{prefix}", "compdir=#{prefix}", "install"
  end

  test do
    system bin/"blaze", "init"
    system bin/"blaze", "config", "blog.title", "Homebrew!"
    system bin/"blaze", "make"
    assert File.exist? "default.css"
    assert File.read(".blaze/config").include?("Homebrew!")
  end
end