diff options
author | Juergen Daubert <jue@jue.li> | 2015-12-22 16:41:32 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2015-12-22 16:41:32 +0100 |
commit | 02d89ca6aadbb43e810642d1ce247eb40a2ab3f3 (patch) | |
tree | 0ff2d4a4d0463374c592bb828b12ea8ef6a2edeb /ncurses | |
parent | 6d3c071f472d07b9ae7f1894fc29834ae3e2b1fe (diff) | |
download | core-02d89ca6aadbb43e810642d1ce247eb40a2ab3f3.tar.gz core-02d89ca6aadbb43e810642d1ce247eb40a2ab3f3.tar.xz |
ncurses: remove /usr/include/ncursesw (FS#667)
Diffstat (limited to 'ncurses')
-rw-r--r-- | ncurses/.footprint | 2 | ||||
-rw-r--r-- | ncurses/Pkgfile | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/ncurses/.footprint b/ncurses/.footprint index d3c49159..ff810729 100644 --- a/ncurses/.footprint +++ b/ncurses/.footprint @@ -30,8 +30,6 @@ drwxr-xr-x root/root usr/include/ -rw-r--r-- root/root usr/include/nc_tparm.h lrwxrwxrwx root/root usr/include/ncurses.h -> curses.h -rw-r--r-- root/root usr/include/ncurses_dll.h -drwxr-xr-x root/root usr/include/ncursesw/ -lrwxrwxrwx root/root usr/include/ncursesw/ncurses.h -> ../curses.h -rw-r--r-- root/root usr/include/panel.h -rw-r--r-- root/root usr/include/term.h -rw-r--r-- root/root usr/include/term_entry.h diff --git a/ncurses/Pkgfile b/ncurses/Pkgfile index 33b4a718..2a01e485 100644 --- a/ncurses/Pkgfile +++ b/ncurses/Pkgfile @@ -4,7 +4,7 @@ name=ncurses version=6.0 -release=2 +release=3 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) build() { @@ -21,7 +21,7 @@ build() { make make DESTDIR=$PKG install - install -d $PKG/{lib,usr/include/ncursesw} + install -d $PKG/lib # move library to /lib and create symlinks mv $PKG/usr/lib/libncursesw.so.* $PKG/lib @@ -42,7 +42,4 @@ build() { ln -s libncursesw.so $PKG/usr/lib/libncurses.so.5 ln -s libncursesw.so $PKG/usr/lib/libncursesw.so.5 ln -s libncursesw.so $PKG/usr/lib/libncursesw.so.6 - - # some progs expect a /usr/include/curses.h - ln -s ../curses.h $PKG/usr/include/ncursesw/ncurses.h } |