blob: 30dffc444109a3c722be9fbc800fcf6b9b4fc5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class MidnightCommander <Formula
url 'http://www.midnight-commander.org/downloads/59'
homepage 'http://www.midnight-commander.org/'
sha256 '1b8e9650f092d4554eb08f137142bd203b5cef74b5000f3e228f0261fd92a039'
version '4.7.0.8'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-x",
"--with-screen=ncurses"
system "make install"
end
end
|