aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libechonest.rb
blob: 839b40704535e0dcf225940566c841e45f6c0a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'

  depends_on 'cmake' => :build
  depends_on 'qt'
  depends_on 'qjson'

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end