blob: 0224cc241d9dcf7939a910b5b2ad42cb7ec1e166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Dromeaudio < Formula
  homepage 'http://joshbeam.com/software/dromeaudio/'
  url 'http://joshbeam.com/files/software/dromeaudio/DromeAudio-0.2.1.tar.gz'
  sha1 '4d225a2b00300d04320aafb217d9087b12651be1'
  depends_on 'cmake' => :build
  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end
  |