coremod 4.2.0

master
Misty De Meo 2014-03-17 10:34:31 -07:00
parent e8a5aedd7d
commit 0bc8848588
1 changed files with 19 additions and 0 deletions

19
Formula/coremod.rb Normal file
View File

@ -0,0 +1,19 @@
require "formula"
class Coremod < Formula
homepage "http://xmp.sourceforge.net"
url "https://github.com/cmatsuoka/coremod/archive/coremod-4.2.0.tar.gz"
sha1 "3dc36af9fef89ad5204554440a7044a5ceaf3f67"
head do
url "https://github.com/cmatsuoka/coremod.git"
end
depends_on :autoconf
def install
system "autoconf"
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end