Skip to content

Instantly share code, notes, and snippets.

@Flamefork
Created December 6, 2020 15:27
Show Gist options
  • Save Flamefork/0e0bb915fcd13ed6724a31c5ae2f0624 to your computer and use it in GitHub Desktop.
Save Flamefork/0e0bb915fcd13ed6724a31c5ae2f0624 to your computer and use it in GitHub Desktop.
class C45b < Formula
desc "Tool for communicating with the Chip45 AVR bootloader"
homepage "https://github.com/bullestock/c45b"
head "https://github.com/bullestock/c45b.git"
depends_on "qt@4" => :build
def install
system "qmake", "PREFIX=#{prefix}"
system "make"
system "make", "install"
bin.install "console/c45b.app/Contents/MacOS/c45b"
end
test do
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment