Last active
January 20, 2023 14:33
-
-
Save matlads/f6b7d64d651db8f24ca6 to your computer and use it in GitHub Desktop.
Homebrew formula for dillo
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
| 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