Ncursesw formula
Wide character version of the ncurses library.
This commit is contained in:
parent
e2e2dda7b1
commit
59472b306d
1 changed files with 21 additions and 0 deletions
21
Formula/ncursesw.rb
Normal file
21
Formula/ncursesw.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Ncursesw <Formula
|
||||
url 'http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.7.tar.gz'
|
||||
md5 'cce05daf61a64501ef6cd8da1f727ec6'
|
||||
homepage 'http://www.gnu.org/software/ncurses/ncurses.html'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}",
|
||||
"--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--enable-widec",
|
||||
"--disable-rpath",
|
||||
"--with-shared",
|
||||
"--without-ada",
|
||||
"--enable-safe-sprintf",
|
||||
"--enable-sigwinch",
|
||||
"--enable-ext-colors"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue