Created
October 26, 2016 09:11
-
-
Save ast/2293849b09854f05e71fbc46a5bd5481 to your computer and use it in GitHub Desktop.
homebrew formula for building liquid-dsp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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