aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libechonest.rb
diff options
context:
space:
mode:
authorDavid Christenson2015-03-07 01:36:10 -0700
committerTim D. Smith2015-03-19 23:52:45 -0700
commit2e8dcd56022323d418cb12bdee8ec7bd434ba04e (patch)
treec82ab734e3cece7eb6986219bd45eafcc41b94c5 /Library/Formula/libechonest.rb
parent1fb270d944d3e3b48f01d82dd762871ab0e6e0d0 (diff)
downloadhomebrew-2e8dcd56022323d418cb12bdee8ec7bd434ba04e.tar.bz2
libechonest 2.3.1
Update to latest stable release, modernize formula.
Diffstat (limited to 'Library/Formula/libechonest.rb')
-rw-r--r--Library/Formula/libechonest.rb18
1 files changed, 8 insertions, 10 deletions
diff --git a/Library/Formula/libechonest.rb b/Library/Formula/libechonest.rb
index adc2fe37a..91b55aa2f 100644
--- a/Library/Formula/libechonest.rb
+++ b/Library/Formula/libechonest.rb
@@ -1,9 +1,7 @@
-require 'formula'
-
class Libechonest < Formula
- homepage 'https://projects.kde.org/projects/playground/libs/libechonest'
- url 'http://files.lfranchi.com/libechonest-2.2.0.tar.bz2'
- sha1 'fec281d9288c2a4fabd2dd275f1a508dd6d1bc5c'
+ homepage "https://projects.kde.org/projects/playground/libs/libechonest"
+ url "http://files.lfranchi.com/libechonest-2.3.1.tar.bz2"
+ sha256 "56756545fd1cb3d9067479f52215b6157c1ced2bc82b895e72fdcd9bebb47889"
bottle do
cellar :any
@@ -13,14 +11,14 @@ class Libechonest < Formula
sha1 "1ae85cce12862896bcc2d28509854dd8e6b3d9be" => :mountain_lion
end
- depends_on 'cmake' => :build
- depends_on 'qt'
- depends_on 'qjson'
+ depends_on "cmake" => :build
+ depends_on "qt"
+ depends_on "qjson"
- conflicts_with 'doxygen', :because => "cmake fails to configure build."
+ conflicts_with "doxygen", :because => "cmake fails to configure build."
def install
system "cmake", ".", *std_cmake_args
- system "make install"
+ system "make", "install"
end
end