aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dateutils.rb
blob: c89b9bde54b119f1419c2fad14e77cb527d3d35a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Dateutils < Formula
  homepage "http://www.fresse.org/dateutils/"
  url "https://bitbucket.org/hroptatyr/dateutils/downloads/dateutils-0.2.5.tar.xz"
  sha1 "47f2ba469daff7586d47473f54a77848b724ba45"

  bottle do
    cellar :any
    sha1 "bcacbd417ff8109bd9bd73aaa0397e7738cda974" => :yosemite
    sha1 "aea972b1c122db46172d6e37fbfd3fd015fa7bdc" => :mavericks
    sha1 "628ce464741daf92af6dd31d8c93bb012324ae87" => :mountain_lion
  end

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end

  test do
    assert_equal "2012-03-01-00", shell_output("#{bin}/dconv 2012-03-04 -f \"%Y-%m-%c-%w\"").strip
  end
end