diff options
| author | Adam Vandenberg | 2012-03-09 20:47:07 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-09 20:47:07 -0800 |
| commit | a99a48aa7d2abcabaa233093ad5a422873d8001a (patch) | |
| tree | 09b509e1eee18648b76d8c4658411f1d8d24240a /Library/Formula/echoprint-codegen.rb | |
| parent | b4c541234d0784d3c0b5fcb143e30177a498030e (diff) | |
| download | homebrew-a99a48aa7d2abcabaa233093ad5a422873d8001a.tar.bz2 | |
echoprint-codegen: style nit-pick
Diffstat (limited to 'Library/Formula/echoprint-codegen.rb')
| -rw-r--r-- | Library/Formula/echoprint-codegen.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/echoprint-codegen.rb b/Library/Formula/echoprint-codegen.rb index 46580ea5c..5451f3019 100644 --- a/Library/Formula/echoprint-codegen.rb +++ b/Library/Formula/echoprint-codegen.rb @@ -1,14 +1,16 @@ require 'formula' class EchoprintCodegen < Formula - head 'https://github.com/echonest/echoprint-codegen.git' homepage 'http://echoprint.me' + head 'https://github.com/echonest/echoprint-codegen.git' depends_on 'ffmpeg' depends_on 'taglib' depends_on 'boost' def install - system "cd src; PREFIX=#{prefix} make install" + cd 'src' do + system "make", "install", "PREFIX=#{prefix}" + end end end |
