diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mplayer.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/mplayer.rb b/Library/Formula/mplayer.rb new file mode 100644 index 000000000..3221e5394 --- /dev/null +++ b/Library/Formula/mplayer.rb @@ -0,0 +1,13 @@ +require 'brewkit' + +class Mplayer <Formula + @homepage='http://www.mplayerhq.hu/' + @url='http://www.mplayerhq.hu/MPlayer/releases/mplayer-checkout-snapshot.tar.bz2' + @md5='' + @verison='snapshot' + + def install + system "./configure --disable-debug --prefix='#{prefix}'" + system "make install" + end +end
\ No newline at end of file |
