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