7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
18 lines
488 B
Ruby
18 lines
488 B
Ruby
require 'formula'
|
|
|
|
class Wyrd <Formula
|
|
url 'http://pessimization.com/software/wyrd/wyrd-1.4.4.tar.gz'
|
|
homepage 'http://pessimization.com/software/wyrd/'
|
|
md5 'a376c05ba614625da06082d850c742c7'
|
|
|
|
depends_on 'remind'
|
|
depends_on 'objective-caml'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-utf8"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|