Skip to content

Instantly share code, notes, and snippets.

@matlads
Last active January 20, 2023 14:33
Show Gist options
  • Save matlads/f6b7d64d651db8f24ca6 to your computer and use it in GitHub Desktop.
Save matlads/f6b7d64d651db8f24ca6 to your computer and use it in GitHub Desktop.
Homebrew formula for dillo
class Dillo < Formula
desc "A multi-platform graphical web browser"
homepage "http://www.dillo.org"
url "http://www.dillo.org/download/dillo-3.0.5.tar.bz2"
sha256 "db1be16c1c5842ebe07b419aa7c6ef11a45603a75df2877f99635f4f8345148b"
depends_on "fltk"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
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