0adb733d73
chordii is a tool used to create "nice-looking" song sheets in PostScript format out of ASCII input. chordii is the succesor of the tool "chord" created in the early 90ies of the last century. ITworld mentions Chordii as one of the 10 best (unknown) open source projects. Closes Homebrew/homebrew#15851. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
12 lines
372 B
Ruby
12 lines
372 B
Ruby
require 'formula'
|
|
|
|
class Chordii < Formula
|
|
homepage 'http://www.vromans.org/johan/projects/Chordii/'
|
|
url 'http://downloads.sourceforge.net/project/chordii/chordii/4.3/chordii-4.3.tar.gz'
|
|
sha1 '4f959aee0db7c80f2c55441b93fe1a9abdbcdca3'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|