moe 1.7 (new formula)

This commit is contained in:
Dj Padzensky 2015-05-06 09:48:03 -07:00 committed by Xu Cheng
parent 46d44d299c
commit b1e8e331e4

15
Formula/moe.rb Normal file
View file

@ -0,0 +1,15 @@
class Moe < Formula
homepage "https://www.gnu.org/software/moe/moe.html"
url "http://ftpmirror.gnu.org/moe/moe-1.7.tar.lz"
mirror "https://ftp.gnu.org/pub/gnu/moe/moe-1.7.tar.lz"
sha256 "33ba66f948353c105232e9c8b2da8dc7b6ddc8cdff4beb3e3f55d78bc3acf1bb"
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/moe", "--version"
end
end