diff options
| -rw-r--r-- | Library/Formula/echoprint-codegen.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/echoprint-codegen.rb b/Library/Formula/echoprint-codegen.rb new file mode 100644 index 000000000..46580ea5c --- /dev/null +++ b/Library/Formula/echoprint-codegen.rb @@ -0,0 +1,14 @@ +require 'formula' + +class EchoprintCodegen < Formula + head 'https://github.com/echonest/echoprint-codegen.git' + homepage 'http://echoprint.me' + + depends_on 'ffmpeg' + depends_on 'taglib' + depends_on 'boost' + + def install + system "cd src; PREFIX=#{prefix} make install" + end +end |
