homebrew-core/Formula/wyrd.rb
Alexis Hildebrandt 2766f7d1e5 wyrd 1.4.6
Closes Homebrew/homebrew#19156.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-12 18:57:34 -05:00

19 lines
520 B
Ruby

require 'formula'
class Wyrd < Formula
homepage 'http://pessimization.com/software/wyrd/'
url 'http://pessimization.com/software/wyrd/wyrd-1.4.6.tar.gz'
sha1 'aaeca29b844825f45aadcf5207f4d1c875e4dc82'
depends_on 'remind'
depends_on 'objective-caml'
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-utf8"
system "make"
system "make install"
end
end