blob: 42f1ffb96525c45e2cdb34d745285ab8c96336d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class FluidSynth < Formula
homepage 'http://www.fluidsynth.org'
url 'https://downloads.sourceforge.net/project/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.gz'
sha1 '155de731e72e91e1d4b7f52c33d8171596fbf244'
depends_on 'pkg-config' => :build
depends_on 'cmake' => :build
depends_on 'glib'
depends_on 'libsndfile' => :optional
def install
mkdir 'build' do
system "cmake", "..", "-Denable-framework=OFF", "-DLIB_SUFFIX=", *std_cmake_args
system "make install"
end
end
end
|