forked from sjackman/linuxbrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alac.rb
28 lines (25 loc) · 1.71 KB
/
alac.rb
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
class Alac < Formula
desc "Basic decoder for Apple Lossless Audio Codec files (ALAC)"
homepage "https://web.archive.org/web/20150319040222/craz.net/programs/itunes/alac.html"
url "https://web.archive.org/web/20150510210401/craz.net/programs/itunes/files/alac_decoder-0.2.0.tgz"
sha256 "7f8f978a5619e6dfa03dc140994fd7255008d788af848ba6acf9cfbaa3e4122f"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "3d12d2c7b28c99fba529faea181dc91a04ea469e68607f9e3263c082dcb5cde4"
sha256 cellar: :any_skip_relocation, big_sur: "8d6293bbacf08bada008f799f03c6ea3265dd48bd5c81d77d042e4a3bedcf84f"
sha256 cellar: :any_skip_relocation, catalina: "0cb8439e4028ea823fb442559c12365bae08499a142ad46d0c89f010f9eb7e5d"
sha256 cellar: :any_skip_relocation, mojave: "ffc34867982b3a942be2bfa1c9a561bc85270871b029c45a16fc11ffae899603"
sha256 cellar: :any_skip_relocation, high_sierra: "17bffb09018ddf7d96258b99860d75fb9a203037a356cb0f2e4c6c4520cdc4c3"
sha256 cellar: :any_skip_relocation, sierra: "3c833c71834ea65498c761d4fe444a26e97e107433de526ab55ad1fb0d36a2ba"
sha256 cellar: :any_skip_relocation, el_capitan: "4cb85c125553c6c2a49576790c5be5e0b89096569131df3b8576f3499e65ef5a"
sha256 cellar: :any_skip_relocation, yosemite: "a3a54a254a147f3a1173870bdd2e9399043b3e506d8c04383f99cf3ce67a4fca"
sha256 cellar: :any_skip_relocation, x86_64_linux: "13cb21bc650758a34bd9b9dc2ecfcce95fe20461b4c34b304acd2e9046c46683" # linuxbrew-core
end
def install
system "make", "CFLAGS=#{ENV.cflags}", "CC=#{ENV.cc}"
bin.install "alac"
end
test do
sample = test_fixtures("test.m4a")
assert_equal "file type: mp4a\n", shell_output("#{bin}/alac -t #{sample}", 100)
end
end