Add formula for mpgtx.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
99622f2668
commit
b1da7087c8
1 changed files with 13 additions and 0 deletions
13
Formula/mpgtx.rb
Normal file
13
Formula/mpgtx.rb
Normal 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
|
Loading…
Reference in a new issue