aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLee Hanxue2013-11-20 21:33:40 +0800
committerAdam Vandenberg2013-11-20 17:56:39 -0800
commitbccaa4a4b54b49e2c52128ae6fccf89bbb6d2368 (patch)
tree69839daa9fdbb398a61f7c41fa3c531be9ec8d81 /Library
parent4c03c1fcac919c4636b9b00ebbff0609e831baa3 (diff)
downloadhomebrew-bccaa4a4b54b49e2c52128ae6fccf89bbb6d2368.tar.bz2
echoprint-codegen 4.12
Closes #24528. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/echoprint-codegen.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/echoprint-codegen.rb b/Library/Formula/echoprint-codegen.rb
new file mode 100644
index 000000000..8843aead2
--- /dev/null
+++ b/Library/Formula/echoprint-codegen.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class EchoprintCodegen < Formula
+ homepage 'http://echoprint.me'
+ url 'https://github.com/echonest/echoprint-codegen/archive/v4.12.tar.gz'
+ sha256 'c40eb79af3abdb1e785b6a48a874ccfb0e9721d7d180626fe29c72a29acd3845'
+ head 'https://github.com/echonest/echoprint-codegen.git'
+
+ depends_on 'ffmpeg'
+ depends_on 'taglib'
+ depends_on 'boost'
+
+ def install
+ cd 'src' do
+ system "make", "install", "PREFIX=#{prefix}"
+ end
+ end
+end