echoprint-codegen: style nit-pick

master
Adam Vandenberg 2012-03-09 20:47:07 -08:00
parent 1f8d791332
commit 6ac8c80108
1 changed files with 4 additions and 2 deletions

View File

@ -1,14 +1,16 @@
require 'formula'
class EchoprintCodegen < Formula
head 'https://github.com/echonest/echoprint-codegen.git'
homepage 'http://echoprint.me'
head 'https://github.com/echonest/echoprint-codegen.git'
depends_on 'ffmpeg'
depends_on 'taglib'
depends_on 'boost'
def install
system "cd src; PREFIX=#{prefix} make install"
cd 'src' do
system "make", "install", "PREFIX=#{prefix}"
end
end
end