2009-11-25 07:21:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class MidnightCommander < Formula
|
2009-11-25 07:21:13 +00:00
|
|
|
homepage 'http://www.midnight-commander.org/'
|
2013-07-12 12:58:10 +00:00
|
|
|
url 'http://www.midnight-commander.org/downloads/mc-4.8.9.tar.bz2',
|
2012-04-22 17:45:46 +00:00
|
|
|
:using => CurlUnsafeDownloadStrategy
|
2013-07-12 12:58:10 +00:00
|
|
|
mirror 'http://fossies.org/linux/misc/mc-4.8.9.tar.bz2'
|
|
|
|
sha256 '7e184cf5ed3ff8b93fcbfff16608c1444920f523beda2fcc586878d619ea11da'
|
2009-11-25 07:21:13 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-08-08 00:16:13 +00:00
|
|
|
depends_on 'glib'
|
2011-01-22 18:51:22 +00:00
|
|
|
depends_on 's-lang'
|
2009-11-25 07:21:13 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-08 00:16:13 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--without-x",
|
2011-01-22 18:51:22 +00:00
|
|
|
"--with-screen=slang"
|
2009-11-25 07:21:13 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|