2011-05-11 21:49:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libechonest < Formula
|
|
|
|
homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
|
2013-02-20 00:22:10 +00:00
|
|
|
url 'http://files.lfranchi.com/libechonest-2.0.3.tar.bz2'
|
|
|
|
sha1 '10ada8aced6dce3c0d206afcfbd4b05313bd4d04'
|
2011-05-11 21:49:17 +00:00
|
|
|
|
2011-11-30 02:54:32 +00:00
|
|
|
depends_on 'cmake' => :build
|
2011-05-11 21:49:17 +00:00
|
|
|
depends_on 'qt'
|
|
|
|
depends_on 'qjson'
|
|
|
|
|
2012-08-19 21:36:37 +00:00
|
|
|
conflicts_with 'doxygen', :because => "cmake fails to configure build."
|
|
|
|
|
2011-05-11 21:49:17 +00:00
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-05-11 21:49:17 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|