Skip to content

Instantly share code, notes, and snippets.

@ast
Created October 26, 2016 09:11
Show Gist options
  • Save ast/2293849b09854f05e71fbc46a5bd5481 to your computer and use it in GitHub Desktop.
Save ast/2293849b09854f05e71fbc46a5bd5481 to your computer and use it in GitHub Desktop.
homebrew formula for building liquid-dsp
# homebrew formula for building liquid-dsp
# cp to /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/liquid-dsp.rb and
# brew install -i --HEAD liquid-dsp
class LiquidDsp < Formula
desc "liquid-dsp, a free and open-source signal processing library for software-defined radios written in C."
homepage "http://liquidsdr.org/"
head "https://github.com/jgaeddert/liquid-dsp.git"
depends_on "fftw"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
def install
system "./bootstrap.sh"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "true"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment