homebrew-core/Formula/abcm2ps.rb
Frizlab d0f7482545 abcm2ps 6.6.22
Closes Homebrew/homebrew#18929.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-04 08:57:25 -07:00

16 lines
318 B
Ruby

require 'formula'
class Abcm2ps < Formula
homepage 'http://moinejf.free.fr'
url 'http://moinejf.free.fr/abcm2ps-6.6.22.tar.gz'
sha1 'a59dad019320e5931f54cf3788bc19d4e095f836'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
test do
system "abcm2ps"
end
end