Skip to content

Instantly share code, notes, and snippets.

@aki017
Created August 26, 2014 00:25
Show Gist options
  • Select an option

  • Save aki017/68142590db4816370094 to your computer and use it in GitHub Desktop.

Select an option

Save aki017/68142590db4816370094 to your computer and use it in GitHub Desktop.
mlterm
require "formula"
class Mlterm < Formula
homepage ""
url "https://downloads.sourceforge.net/project/mlterm/01release/mlterm-3.3.8/mlterm-3.3.8.tar.gz"
sha1 "2552cb12fe74629b2eb4ae364f6c8751faa34118"
depends_on :x11 # if your formula requires any X11/XQuartz components
depends_on 'gdk-pixbuf' => :recommended
depends_on 'cairo' => :recommended
depends_on 'gtk+' => :recommended
depends_on 'pkg-config' => :recommended
def install
system "./configure", "--prefix=#{prefix}", "--with-imagelib=gdk-pixbuf", "--with-type-engines=cairo", "--with-x"
system "make", "-j8"
system "make", "install"
end
end
@aki017
Copy link
Author

aki017 commented Aug 27, 2014

Tap created here

$ brew tap aki017/sixel
$ brew install mlterm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment