Add formula for mpgtx.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Gray Manley 2011-01-20 04:56:01 -06:00 committed by Adam Vandenberg
parent 99622f2668
commit b1da7087c8

13
Formula/mpgtx.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Mpgtx <Formula
url 'http://sourceforge.net/projects/mpgtx/files/mpgtx/1.3.1/mpgtx-1.3.1.tar.gz'
homepage 'http://mpgtx.sourceforge.net'
md5 'd628060aa04ad3b40a175bf35f5167cf'
def install
system "./configure", "--parachute", "--prefix=#{prefix}", "--manprefix=#{man}"
system "make"
system "make install cpflags=RP" # Overide BSD incompatible cp flags set in makefile.
end
end