aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2009-10-05 11:19:52 +0200
committerMax Howell2009-10-12 22:51:57 +0100
commit34b1002ad66f601b9c95696d1bb96b3d65042551 (patch)
tree40939f92a00fc5beddd1f01bdf1a38e117ef2272 /Library/Formula
parente551efc517811f99bc3beec20b9c7dd5cee224f6 (diff)
downloadhomebrew-34b1002ad66f601b9c95696d1bb96b3d65042551.tar.bz2
Ncursesw formula
Wide character version of the ncurses library.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ncursesw.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/ncursesw.rb b/Library/Formula/ncursesw.rb
new file mode 100644
index 000000000..0a1a4887d
--- /dev/null
+++ b/Library/Formula/ncursesw.rb
@@ -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