blob: d01f5f0bdb86d995de72e0e77b44c1fcf004f4be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class MidnightCommander < Formula
url 'http://www.midnight-commander.org/downloads/mc-4.8.0.tar.bz2',
:using => CurlUnsafeDownloadStrategy
homepage 'http://www.midnight-commander.org/'
sha256 'dbf077b318c13fc6d465dc67bd43958f067b9ff7e21041975bd14927dfa31b52'
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 's-lang'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-x",
"--with-screen=slang"
system "make install"
end
end
|