c571587767
Closes Homebrew/homebrew#30267. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
895 B
Ruby
26 lines
895 B
Ruby
require 'formula'
|
|
|
|
class Abcmidi < Formula
|
|
homepage 'http://www.ifdo.ca/~seymour/runabc/top.html'
|
|
url 'http://www.ifdo.ca/~seymour/runabc/abcMIDI-2014-04-24.zip'
|
|
version '2014-04-24'
|
|
sha1 'be1922399afacb85a2f61296d86fbec5faab993b'
|
|
|
|
def install
|
|
# configure creates a "Makefile" file. A "makefile" file already exist in
|
|
# the tarball. On case-sensitive file-systems, the "makefile" file won't
|
|
# be overridden and will be chosen over the "Makefile" file.
|
|
system "rm", "makefile"
|
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
# The Makefile is broken when using --prefix (value is added to path twice).
|
|
# abcmidi author is notified (2012-06-20). In the meantime, here's a fix.
|
|
inreplace "Makefile", "$(DESTDIR)${prefix}", "$(DESTDIR)"
|
|
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/abc2midi"
|
|
end
|
|
end
|