aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mp3wrap.rb
blob: 89e28f5f86c823709f0ba91e23d0b21b9715027c (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