43 lines
1.5 KiB
Ruby
43 lines
1.5 KiB
Ruby
class Libgsm < Formula
|
|
desc "Lossy speech compression library"
|
|
homepage "http://www.quut.com/gsm/"
|
|
url "http://www.quut.com/gsm/gsm-1.0.17.tar.gz"
|
|
sha256 "855a57d1694941ddf3c73cb79b8d0b3891e9c9e7870b4981613b734e1ad07601"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "a09c56c1092d573d0f0e2eac64cc0b24c052d644e882c83f7fa1479809490d99" => :high_sierra
|
|
sha256 "81adb1475c78284f6794e172a8259c3a16bd60a6cb322e015443bedd24238597" => :sierra
|
|
sha256 "0aaa622ead97802072f54ebb8e33e4aeac94607fa66a38c36ff9b4b96aac8518" => :el_capitan
|
|
end
|
|
|
|
# Builds a dynamic library for gsm, this package is no longer developed
|
|
# upstream. Patch taken from Debian and modified to build a dylib.
|
|
patch do
|
|
url "https://gist.githubusercontent.com/dholm/5840964/raw/1e2bea34876b3f7583888b2284b0e51d6f0e21f4/gistfile1.txt"
|
|
sha256 "3b47c28991df93b5c23659011e9d99feecade8f2623762041a5dcc0f5686ffd9"
|
|
end
|
|
|
|
def install
|
|
ENV.append_to_cflags "-c -O2 -DNeedFunctionPrototypes=1"
|
|
|
|
# Only the targets for which a directory exists will be installed
|
|
bin.mkpath
|
|
lib.mkpath
|
|
include.mkpath
|
|
man1.mkpath
|
|
man3.mkpath
|
|
|
|
# Dynamic library must be built first
|
|
system "make", "lib/libgsm.1.0.13.dylib",
|
|
"CC=#{ENV.cc}", "CCFLAGS=#{ENV.cflags}",
|
|
"LDFLAGS=#{ENV.ldflags}"
|
|
system "make", "all",
|
|
"CC=#{ENV.cc}", "CCFLAGS=#{ENV.cflags}",
|
|
"LDFLAGS=#{ENV.ldflags}"
|
|
system "make", "install",
|
|
"INSTALL_ROOT=#{prefix}",
|
|
"GSM_INSTALL_INC=#{include}"
|
|
lib.install Dir["lib/*dylib"]
|
|
end
|
|
end
|