blob: 46580ea5c1f054e818e895cc6c0230096144c24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|