homebrew-core/Formula/abcm2ps.rb

17 lines
325 B
Ruby
Raw Normal View History

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
2013-06-02 17:19:55 +00:00
system "#{bin}/abcm2ps"
end
end