Commit f3b3c5fb authored by Casey Strouse's avatar Casey Strouse

Add utf-8 support

A few utilities that I've been using (such as tig) need utf-8 support to
work correctly.
parent e5f13f59
......@@ -8,7 +8,13 @@ class Ncurses < Package
depends_on "diffutils"
def self.build
system "./configure CFLAGS=\" -fPIC\" --without-debug --prefix=/usr/local --with-shared --with-cxx-shared"
system './configure ' \
'CFLAGS=" -fPIC" ' \
'--without-debug ' \
'--prefix=/usr/local ' \
'--with-shared ' \
'--with-cxx-shared ' \
'--enable-widec'
system "make"
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment