Skip to content

Commit

Permalink
flac123 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dunn committed Sep 5, 2015
1 parent c4be231 commit 20bae5f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Formula/flac123.rb
@@ -1,8 +1,11 @@
class Flac123 < Formula class Flac123 < Formula
desc "Command-line program for playing FLAC audio files" desc "Command-line program for playing FLAC audio files"
homepage "http://flac-tools.sourceforge.net/" homepage "http://flac-tools.sourceforge.net/"
url "https://downloads.sourceforge.net/project/flac-tools/flac123/0.0.11/flac123-0.0.11.tar.gz" url "https://downloads.sourceforge.net/project/flac-tools/flac123/flac123-0.0.12-release.tar.gz"
sha256 "2f96da02c28730fcc2c71e9e6975268a4b01b0a298f1bea58a5543192f972b66" sha256 "1976efd54a918eadd3cb10b34c77cee009e21ae56274148afa01edf32654e47d"

depends_on "automake" => :build
depends_on "autoconf" => :build


depends_on "flac" depends_on "flac"
depends_on "libao" depends_on "libao"
Expand All @@ -11,7 +14,10 @@ class Flac123 < Formula


def install def install
system "./configure", "--prefix=#{prefix}" system "./configure", "--prefix=#{prefix}"
system "make", "install" system "make", "install", "CC=#{ENV.cc}",
# specify aclocal and automake without version suffixes
"ACLOCAL=${SHELL} #{buildpath}/missing --run aclocal",
"AUTOMAKE=${SHELL} #{buildpath}/missing --run automake"
end end


test do test do
Expand Down

0 comments on commit 20bae5f

Please sign in to comment.