blob: a863e4aa3c58ad8087634674383c9582a2a83c49 (
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.1.8.tar.bz2'
homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
sha1 'ce79da389979e7deca2858b1d677312f027b6264'
depends_on 'cmake'
depends_on 'qt'
depends_on 'qjson'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end
|