diff options
| author | Rick Fletcher | 2010-01-03 22:08:41 -0800 |
|---|---|---|
| committer | David Höppner | 2010-01-30 14:18:04 +0100 |
| commit | cb6f4a45d3b04fc14a2901a28cec065d4da24e1c (patch) | |
| tree | f5d339165bb80c41a71f6190f1a7a981af8527eb /Library/Formula/libebml.rb | |
| parent | 2bc709e91fc25c387efeb91a232ba014ec32e05a (diff) | |
| download | homebrew-cb6f4a45d3b04fc14a2901a28cec065d4da24e1c.tar.bz2 | |
Added formula libebml
Diffstat (limited to 'Library/Formula/libebml.rb')
| -rw-r--r-- | Library/Formula/libebml.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libebml.rb b/Library/Formula/libebml.rb new file mode 100644 index 000000000..1eca26fa0 --- /dev/null +++ b/Library/Formula/libebml.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Libebml <Formula + # This is the official source, but it's frequently down. Use the mktoolnix mirror instead. + # url 'http://dl.matroska.org/downloads/libebml/libebml-0.7.8.tar.bz2' + url 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-0.7.8.tar.bz2' + homepage 'http://www.matroska.org/' + md5 '6278109f52e4f9d2c8a8dfc0d668b587' + + def install + system 'cp -r make/linux make/darwin' + system "cd make/darwin && make install prefix=#{prefix}" + end +end |
