e254e2f7f0
--HG-- extra : convert_revision : 6486ec973735de53e460a752f7a718aada4baed3
34 lines
1.4 KiB
Text
34 lines
1.4 KiB
Text
# Template build file for 'ncursesw'.
|
|
pkgname=ncursesw
|
|
version=5.7
|
|
wrksrc="ncurses-${version}"
|
|
distfiles="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-$version.tar.gz"
|
|
build_style=gnu_configure
|
|
configure_args="--with-install-prefix=$XBPS_DESTDIR/$pkgname-$version
|
|
--with-shared --without-debug --enable-widec
|
|
--includedir=/usr/include/ncursesw"
|
|
make_install_target="install.includes install.libs"
|
|
short_desc="Shared libraries for terminal handling (wide character)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=0a9bdea5c7de8ded5c9327ed642915f2cc380753f12d4ad120ef7da3ea3498f4
|
|
long_desc="
|
|
The ncurses (new curses) library is a freeware emulation of System V Release
|
|
4.0 curses. It uses terminfo format, supports pads and color and multiple
|
|
highlights and forms characters and function-key mapping, and has all the
|
|
other SYSV-curses enhancements over BSD curses. The distribution includes
|
|
the library and support utilities, including a terminfo compiler tic, a
|
|
ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
|
|
Full manual pages are provided for the library and tools."
|
|
|
|
subpackages="$pkgname-devel"
|
|
Add_dependency run glibc
|
|
|
|
post_install()
|
|
{
|
|
rm -f ${DESTDIR}/usr/lib/lib*.so
|
|
rm -f ${DESTDIR}/usr/lib/libncursesw.so.5
|
|
mkdir -p ${DESTDIR}/lib
|
|
mv ${DESTDIR}/usr/lib/libncursesw.so.5.7 ${DESTDIR}/lib
|
|
cd ${DESTDIR}/usr/lib && \
|
|
ln -sf ../../lib/libncursesw.so.5.7 libncursesw.so.5
|
|
}
|