39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
class Liblo < Formula
|
|
desc "Lightweight Open Sound Control implementation"
|
|
homepage "https://liblo.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/liblo/liblo/0.29/liblo-0.29.tar.gz"
|
|
sha256 "ace1b4e234091425c150261d1ca7070cece48ee3c228a5612d048116d864c06a"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "f87426829c595b95559f0efba6fae738f6fbc3995cb4223a9946d18509c7c89a" => :catalina
|
|
sha256 "bec4aa8cf37050f2b35123d1ca894801e5ae75d95034e7ee2d3b365922180332" => :mojave
|
|
sha256 "e69e5f3405e2c55b25864a62dcdd3d454c9e460fe54d87447a1821973f9a6e67" => :high_sierra
|
|
sha256 "c39875452da500b334cb532d903c284b178cb3f9dd15e0201228dfbe78511985" => :sierra
|
|
end
|
|
|
|
head do
|
|
url "https://git.code.sf.net/p/liblo/git.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
if build.head?
|
|
system "./autogen.sh", *args
|
|
else
|
|
system "./configure", *args
|
|
end
|
|
|
|
system "make", "install"
|
|
end
|
|
end
|