aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ripmime.rb
blob: f31559603ed62abcb95b4f403d82512d4fabe168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Ripmime < Formula
  url 'http://www.pldaniels.com/ripmime/ripmime-1.4.0.9.tar.gz'
  homepage 'http://www.pldaniels.com/ripmime/'
  md5 '25761b8a533bc935f75902724fb73244'

  def install
    system "make"

    # Don't "make install", do it manually
    bin.install "ripmime"
    man1.install "ripmime.1"
  end
end