Skip to content

Instantly share code, notes, and snippets.

@g3d
Last active December 18, 2015 11:58
Show Gist options
  • Save g3d/5779058 to your computer and use it in GitHub Desktop.
Save g3d/5779058 to your computer and use it in GitHub Desktop.
RTF Filter homebrew formula
require 'formula'
class RtfFilter <Formula
url 'https://github.com/g3d/rtf-filter/archive/v2.1.3.zip'
homepage 'https://github.com/leanbid/rtf-filter'
version '2.1.3'
md5 '1a1197babbdb4fbff503408a680699dc'
depends_on 'boost'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make"
system "make install"
doc.install "README"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment