blob: dc80d2c678edc4ba0cf07910b72a0775e00dcf0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
require "formula"
class Libgroove < Formula
homepage "https://github.com/andrewrk/libgroove"
url "https://github.com/andrewrk/libgroove/archive/4.2.1.tar.gz"
sha1 "cdcf4109266bb5eb38d62945891d37d907c3ccd3"
bottle do
cellar :any
revision 1
sha1 "bcc1b6b2f985c5f753e9074409062dc558acdecc" => :yosemite
end
depends_on :macos => :mavericks
depends_on "cmake" => :build
depends_on "ffmpeg" => "with-libvorbis"
depends_on "chromaprint"
depends_on "libebur128"
depends_on "sdl2"
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <groove/groove.h>
int main() {
groove_init();
groove_version();
return 0;
}
EOS
system ENV.cc, "test.c", "-lgroove", "-o", "test"
system "./test"
end
end
|