blob: 2dd61672ff5490efa6119e3e9f9413f37fcf0a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
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 "#{bin}/abcm2ps"
  end
end
  |