homebrew-core/Formula/libechonest.rb
Jack Nagel c7630f5ff4 Use new std_cmake_args method
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22 22:22:00 -05:00

16 lines
394 B
Ruby

require 'formula'
class Libechonest < Formula
homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
url 'http://pwsp.cleinias.com/libechonest-1.2.1.tar.bz2'
sha1 '5ad5897c91c365b32840e75e806c9725c89b4522'
depends_on 'cmake' => :build
depends_on 'qt'
depends_on 'qjson'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end