Skip to content

Instantly share code, notes, and snippets.

@hibariya
Created January 14, 2011 04:18
Show Gist options
  • Select an option

  • Save hibariya/779167 to your computer and use it in GitHub Desktop.

Select an option

Save hibariya/779167 to your computer and use it in GitHub Desktop.
require 'formula'
class ScreenPre <Formula
url 'git://git.sv.gnu.org/screen.git'
homepage ''
md5 ''
version '4.1.0'
# depends_on 'cmake'
def install
Dir.chdir "src"
system "autoconf"
system "autoheader"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
# system "cmake . #{std_cmake_parameters}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment