homebrew-core/Formula/libechonest.rb
Brett Koonce 66c730b7d0 libechonest 2.0.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-17 21:11:09 -08:00

18 lines
470 B
Ruby

require 'formula'
class Libechonest < Formula
homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
url 'http://files.lfranchi.com/libechonest-2.0.2.tar.bz2'
sha1 '346eba6037ff544f84505941832604668c1e5b2b'
depends_on 'cmake' => :build
depends_on 'qt'
depends_on 'qjson'
conflicts_with 'doxygen', :because => "cmake fails to configure build."
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end