Added ncursesw-5.7 build template.
--HG-- extra : convert_revision : 6486ec973735de53e460a752f7a718aada4baed3
This commit is contained in:
parent
0b01b7d56b
commit
e254e2f7f0
4 changed files with 58 additions and 0 deletions
1
srcpkgs/ncursesw-devel
Symbolic link
1
srcpkgs/ncursesw-devel
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
ncursesw
|
2
srcpkgs/ncursesw/depends
Normal file
2
srcpkgs/ncursesw/depends
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
abi_depends=">=5.6"
|
||||||
|
api_depends="${abi_depends}"
|
21
srcpkgs/ncursesw/ncursesw-devel.template
Normal file
21
srcpkgs/ncursesw/ncursesw-devel.template
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Template file for 'ncursesw-devel'.
|
||||||
|
#
|
||||||
|
short_desc="${sourcepkg} development files"
|
||||||
|
long_desc="${long_desc}
|
||||||
|
|
||||||
|
This package contains files for development: headers, static libs, etc."
|
||||||
|
|
||||||
|
Add_dependency run glibc-devel
|
||||||
|
Add_dependency run ncurses-devel
|
||||||
|
Add_dependency run ncursesw
|
||||||
|
|
||||||
|
do_install()
|
||||||
|
{
|
||||||
|
mkdir -p ${DESTDIR}/usr/lib
|
||||||
|
mkdir -p ${DESTDIR}/usr/bin
|
||||||
|
|
||||||
|
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
|
||||||
|
mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib
|
||||||
|
cd ${DESTDIR}/usr/lib && ln -s libncursesw.so.5 libncursesw.so
|
||||||
|
mv ${SRCPKGDESTDIR}/usr/bin/ncursesw5* ${DESTDIR}/usr/bin
|
||||||
|
}
|
34
srcpkgs/ncursesw/template
Normal file
34
srcpkgs/ncursesw/template
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# 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
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue