homebrew-core/Formula/coremod.rb

18 lines
413 B
Ruby
Raw Normal View History

2014-03-17 17:34:31 +00:00
require "formula"
class Coremod < Formula
homepage "http://xmp.sourceforge.net"
2014-07-21 02:22:53 +00:00
url "https://github.com/cmatsuoka/coremod/archive/coremod-4.2.8.tar.gz"
sha1 "583cb3bdc6df583739c5b44a4961ba364e0b0ecd"
2014-03-17 17:34:31 +00:00
2014-06-01 01:15:21 +00:00
head "https://github.com/cmatsuoka/coremod.git"
2014-03-17 17:34:31 +00:00
2014-06-01 01:15:21 +00:00
depends_on "autoconf" => :build
2014-03-17 17:34:31 +00:00
def install
system "autoconf"
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end