homebrew-core/Formula/libechonest.rb

17 lines
398 B
Ruby
Raw Normal View History

2011-05-11 21:49:17 +00:00
require 'formula'
class Libechonest < Formula
homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
2012-02-22 05:12:27 +00:00
url 'http://pwsp.cleinias.com/libechonest-1.2.1.tar.bz2'
sha1 '5ad5897c91c365b32840e75e806c9725c89b4522'
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'
def install
2012-02-22 05:12:27 +00:00
system "cmake #{std_cmake_parameters} ."
2011-05-11 21:49:17 +00:00
system "make install"
end
end