aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libebml.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-20 22:04:21 -0800
committerAdam Vandenberg2012-02-24 21:35:50 -0800
commitd3f35542992c4978525b1eaaa0255c92f1e830e0 (patch)
tree499df60efe14b16e641247313cdd07416af1290a /Library/Formula/libebml.rb
parent9c77e1cefce38f2a3001ce398ad0b4dc2f668243 (diff)
downloadhomebrew-d3f35542992c4978525b1eaaa0255c92f1e830e0.tar.bz2
Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir" * And "Dir[]" instead of "Dir.glob" * Also style fixes and nitpicks
Diffstat (limited to 'Library/Formula/libebml.rb')
-rw-r--r--Library/Formula/libebml.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/libebml.rb b/Library/Formula/libebml.rb
index 8186aabd8..e3977ac44 100644
--- a/Library/Formula/libebml.rb
+++ b/Library/Formula/libebml.rb
@@ -1,14 +1,14 @@
require 'formula'
class Libebml < Formula
+ homepage 'http://www.matroska.org/'
url 'http://dl.matroska.org/downloads/libebml/libebml-1.2.2.tar.bz2'
mirror 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-1.2.2.tar.bz2'
- homepage 'http://www.matroska.org/'
md5 '726cc2bd1a525929ff35ff9854c0ebab'
def install
- chdir 'make/linux' do
- system "make install prefix=#{prefix} CXX=#{ENV.cxx}"
+ cd 'make/linux' do
+ system "make", "install", "prefix=#{prefix}", "CXX=#{ENV.cxx}"
end
end
end