diff options
| author | Alastair Porter | 2011-06-29 17:45:39 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-11 12:09:06 -0700 |
| commit | a9dc4867611a694ad9e43a69c442f2ce629ff36b (patch) | |
| tree | dd15e2bd867a47ac9bcb6b2ff8f3a2e4e1cb7b9f /Library/Formula/echoprint-codegen.rb | |
| parent | 54dc96d840b81af0159cdba6344b188dcb075742 (diff) | |
| download | homebrew-a9dc4867611a694ad9e43a69c442f2ce629ff36b.tar.bz2 | |
echoprint-codegen (head)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/echoprint-codegen.rb')
| -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 |
