Skip to content

Instantly share code, notes, and snippets.

@subak
Created August 27, 2012 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subak/3484667 to your computer and use it in GitHub Desktop.
Save subak/3484667 to your computer and use it in GitHub Desktop.
require 'formula'
class ScreenDevel < Formula
url 'http://git.savannah.gnu.org/cgit/screen.git/snapshot/screen-master.tar.gz'
homepage 'http://www.gnu.org/software/screen/'
md5 'e095751919af7a5b3c26e730f05c5355'
depends_on 'autoconf'
def install
Dir.chdir('src')
system "autoconf"
system "autoheader"
system "./configure", "--enable-colors256",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment