blob: 97e6ae83f457830999ff0fba9699bc7ac1334cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'
  sha1 '58b3d18b6dac968e8dd969a7b33c8a8fc31569cd'
  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
  |