homebrew-core/Formula/libechonest.rb

17 lines
395 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'
url 'http://files.lfranchi.com/libechonest-2.0.0.tar.bz2'
sha1 '817a7c2b821d23edbbf6c387deefbfc6dddee66c'
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
system "cmake", ".", *std_cmake_args
2011-05-11 21:49:17 +00:00
system "make install"
end
end