diff options
author | Cem Keylan <cem@ckyln.com> | 2019-12-09 19:17:24 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2019-12-09 19:17:24 +0300 |
commit | 03423e0583057cbe5a16f8439183e2dbc0e8dd7c (patch) | |
tree | 81fe3ba69d94146f83fb5541d1fb2da0ac4eac08 /extra/ncurses | |
download | repository-03423e0583057cbe5a16f8439183e2dbc0e8dd7c.tar.gz |
secondary commit
Diffstat (limited to 'extra/ncurses')
-rwxr-xr-x | extra/ncurses/build | 21 | ||||
-rw-r--r-- | extra/ncurses/checksums | 1 | ||||
-rw-r--r-- | extra/ncurses/sources | 1 | ||||
-rw-r--r-- | extra/ncurses/version | 1 |
4 files changed, 24 insertions, 0 deletions
diff --git a/extra/ncurses/build b/extra/ncurses/build new file mode 100755 index 00000000..6798aa43 --- /dev/null +++ b/extra/ncurses/build @@ -0,0 +1,21 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-pc-files \ + --disable-rpath-hack \ + --with-pkg-config-libdir=/usr/lib/pkgconfig \ + --with-shared \ + --enable-widec \ + --without-ada \ + --without-tests \ + --without-debug \ + --without-cxx-binding + +make +make DESTDIR="$1" install + +# These conflict with busybox's. +rm -f "$1/usr/bin/clear" +rm -f "$1/usr/bin/reset" diff --git a/extra/ncurses/checksums b/extra/ncurses/checksums new file mode 100644 index 00000000..c65d894d --- /dev/null +++ b/extra/ncurses/checksums @@ -0,0 +1 @@ +aa057eeeb4a14d470101eff4597d5833dcef5965331be3528c08d99cebaa0d17 ncurses-6.1.tar.gz diff --git a/extra/ncurses/sources b/extra/ncurses/sources new file mode 100644 index 00000000..30a20483 --- /dev/null +++ b/extra/ncurses/sources @@ -0,0 +1 @@ +https://ftp.gnu.org/gnu/ncurses/ncurses-6.1.tar.gz diff --git a/extra/ncurses/version b/extra/ncurses/version new file mode 100644 index 00000000..1143f417 --- /dev/null +++ b/extra/ncurses/version @@ -0,0 +1 @@ +6.1 1 |