homebrew-core/Formula/libechonest.rb
Brett Koonce cf9478c455 libechonest 2.1.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-24 06:52:23 -07: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.1.0.tar.bz2'
sha1 '77b06cfb96675c4795902c68a802b71a33a0b48f'
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