utimer: modernize

This commit is contained in:
Adam Vandenberg 2014-05-19 11:30:31 -07:00
parent fc1da88f82
commit e715ccb24f

View file

@ -1,18 +1,18 @@
require 'formula'
require "formula"
class Utimer < Formula
homepage 'http://utimer.codealpha.net/utimer/'
url 'http://utimer.codealpha.net/dl.php?file=utimer-0.4.tar.gz'
sha1 'b9590ef4ff6bb8ecf64bb703f50f1bfeddf3fbdd'
homepage "http://utimer.codealpha.net/utimer/"
url "http://utimer.codealpha.net/dl.php?file=utimer-0.4.tar.gz"
sha1 "b9590ef4ff6bb8ecf64bb703f50f1bfeddf3fbdd"
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'glib'
depends_on 'gettext'
depends_on 'XML::Parser' => :perl
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "glib"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end