26 lines
951 B
Ruby
26 lines
951 B
Ruby
class Gcal < Formula
|
|
desc "Program for calculating and printing calendars"
|
|
homepage "https://www.gnu.org/software/gcal/"
|
|
url "https://ftp.gnu.org/gnu/gcal/gcal-4.1.tar.xz"
|
|
mirror "https://ftpmirror.gnu.org/gcal/gcal-4.1.tar.xz"
|
|
sha256 "91b56c40b93eee9bda27ec63e95a6316d848e3ee047b5880ed71e5e8e60f61ab"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f120585bc8538eb1ab7c71ec240b150472cbf7b42e7fc6a3f008c15104d81e7c" => :sierra
|
|
sha256 "c94d7232ff507f387fad5ba5fb0d09b1548e695cf7e1da284846a5ee828f2d03" => :el_capitan
|
|
sha256 "b50b10e57eea6d6fa84c35769401b0da3bde02bade28e137bc1263d492c60c3f" => :yosemite
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make", "install"
|
|
system "make", "-C", "doc/en", "html"
|
|
doc.install "doc/en/gcal.html"
|
|
end
|
|
|
|
test do
|
|
date = shell_output("date +%Y")
|
|
assert_match date, shell_output("#{bin}/gcal")
|
|
end
|
|
end
|