diff options
-rwxr-xr-x | build | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,6 +2,7 @@ build-ncurses: oh-autoconfigure -B obj-ncurses -- \ + --with-install-prefix="$${PWD}/dest" \ --without-profile \ --without-debug \ --without-ada \ @@ -16,6 +17,9 @@ build-ncurses: build-ncursesw: oh-autoconfigure -B obj-ncursesw -- \ --includedir=/usr/include/ncursesw \ + --with-install-prefix="$${PWD}/dest" \ + --without-manpages \ + --without-progs \ --without-profile \ --without-debug \ --without-ada \ @@ -31,6 +35,6 @@ build-ncursesw: build: build-ncurses build-ncursesw install: build - oh-autoinstall -B obj-ncurses - oh-autoinstall -B obj-ncursesw + (cd obj-ncurses && make install) + (cd obj-ncursesw && make install.libs) oh-installfiles |