blob: c4421183723fac7f1328e5b02d56f6021203d558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Mp3wrap < Formula
  url 'http://superb-sea2.dl.sourceforge.net/project/mp3wrap/mp3wrap/mp3wrap%200.5/mp3wrap-0.5-src.tar.gz'
  homepage 'http://mp3wrap.sourceforge.net/'
  md5 '096b46295cbe3ee2f02ca7792517dc36'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end
  |