aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libechonest.rb
blob: 74238a1244b9b82914d90adf32c1aed90f867297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libechonest < Formula
  url 'http://pwsp.cleinias.com/libechonest-1.2.1.tar.bz2'
  homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
  sha1 '5ad5897c91c365b32840e75e806c9725c89b4522'

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

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end