Skip to content

Instantly share code, notes, and snippets.

@pokutuna
Created December 4, 2010 20:38
Show Gist options
  • Save pokutuna/728463 to your computer and use it in GitHub Desktop.
Save pokutuna/728463 to your computer and use it in GitHub Desktop.
require 'formula'
class Nano <Formula
url 'http://www.nano-editor.org/dist/v2.2/nano-2.2.6.tar.gz'
homepage 'http://www.nano-editor.org/'
md5 '03233ae480689a008eb98feb1b599807'
depends_on 'ncursesw'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--enable-utf8"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment