9478d69581
Closes Homebrew/homebrew#17394.
13 lines
343 B
Ruby
13 lines
343 B
Ruby
require 'formula'
|
|
|
|
class Ripmime < Formula
|
|
homepage 'http://www.pldaniels.com/ripmime/'
|
|
url 'http://www.pldaniels.com/ripmime/ripmime-1.4.0.10.tar.gz'
|
|
sha1 '296f657f2f664b713751178fb589d5c64dc7b6ae'
|
|
|
|
def install
|
|
system "make", "LIBS=-liconv", "CFLAGS=#{ENV.cflags}"
|
|
bin.install "ripmime"
|
|
man1.install "ripmime.1"
|
|
end
|
|
end
|