diff options
| author | Misty De Meo | 2014-03-17 10:34:31 -0700 |
|---|---|---|
| committer | Misty De Meo | 2014-03-17 11:36:35 -0700 |
| commit | 1c1cb2b4ffdd202a83a545345efb01b43d738397 (patch) | |
| tree | 31626c99355eaa65c56c78117a33581759b92d79 /Library | |
| parent | b8d208d0a4a4ce778601c2a99885b6325a355ff4 (diff) | |
| download | homebrew-1c1cb2b4ffdd202a83a545345efb01b43d738397.tar.bz2 | |
coremod 4.2.0
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/coremod.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/coremod.rb b/Library/Formula/coremod.rb new file mode 100644 index 000000000..b2ec472bb --- /dev/null +++ b/Library/Formula/coremod.rb @@ -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 |
