blob: 5451f301928af3e45f8efe903f75313884238346 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class EchoprintCodegen < Formula
  homepage 'http://echoprint.me'
  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
  |