blob: b2ec472bb07faeaa12181544d0e6346c831dfcb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|