Skip to content

Instantly share code, notes, and snippets.

@chambbj
Created March 30, 2012 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chambbj/2252508 to your computer and use it in GitHub Desktop.
Save chambbj/2252508 to your computer and use it in GitHub Desktop.
My tvmet formula for Homebrew
require 'formula'
class Tvmet < Formula
url 'http://downloads.sourceforge.net/project/tvmet/Tar.Gz_Bz2%20Archive/1.7.2/tvmet-1.7.2.tar.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Ftvmet%2Ffiles%2F&ts=1333123044&use_mirror=softlayer'
homepage 'http://tvmet.sourceforge.net'
md5 '8e1b2ec67ebec65f680a8bd3ea38a656'
version '1.7.2'
def install
system "./configure", "--prefix=#{prefix}", "--disable-cppunit"
system "make" # Separate steps or install fails
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment