dateutils 0.2.5

Closes Homebrew/homebrew#23264.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
buckket 2013-10-14 15:09:04 +02:00 committed by Adam Vandenberg
parent 2b6890a54a
commit 71298c9c85
1 changed files with 14 additions and 0 deletions

14
Formula/dateutils.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Dateutils < Formula
homepage 'http://www.fresse.org/dateutils/'
url 'https://bitbucket.org/hroptatyr/dateutils/downloads/dateutils-0.2.5.tar.xz'
sha1 '47f2ba469daff7586d47473f54a77848b724ba45'
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end