blob: 54c4e766ecf766d4f10b544d21d6329df442c4f4 (
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.7.5.3.tar.bz2',
:using => CurlUnsafeDownloadStrategy
homepage 'http://www.midnight-commander.org/'
sha256 '0875b4c745d771b65ab71d0a295f2e6e91297121411a82068e2879f39a7628b6'
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
|