summaryrefslogtreecommitdiffhomepage
path: root/vars/ncursesw.vars
blob: 03118da061e7c8cff64b41d93e0e26636f05b636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# . ./build.vars and set -o errexit -o noglob are assumed.
#

pkg_ncursesw_install_post() {
	for __ in 	\
			bin/captoinfo bin/clear bin/infocmp bin/infotocap bin/ncursesw6-config	\
			bin/reset bin/tabs bin/tic bin/toe bin/tput bin/tset			\
			lib/libformw* lib/libmenuw* lib/libncursesw* lib/libpanelw*		\
			share/man share/tabset share/terminfo; do
		set +o noglob;
		build_fileop cp ${PKG_PREFIX}/${__} ${PREFIX_MINIPIX}/${__%%/*};
		set -o noglob;
	done;
};

# vim:filetype=sh