|
|
@ -3,8 +3,8 @@
|
|
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
|
|
|
|
|
|
|
|
pkgname=ncurses
|
|
|
|
pkgname=ncurses
|
|
|
|
pkgver=5.9
|
|
|
|
pkgver=6.0
|
|
|
|
pkgrel=7
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='System V Release 4.0 curses emulation library'
|
|
|
|
pkgdesc='System V Release 4.0 curses emulation library'
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://invisible-island.net/ncurses/ncurses.html'
|
|
|
|
url='http://invisible-island.net/ncurses/ncurses.html'
|
|
|
@ -13,7 +13,7 @@ depends=('glibc' 'gcc-libs' 'sh')
|
|
|
|
provides=('libmenu.so' 'libpanel.so' 'libform.so' 'libncurses.so' 'libncurses++w.so'
|
|
|
|
provides=('libmenu.so' 'libpanel.so' 'libform.so' 'libncurses.so' 'libncurses++w.so'
|
|
|
|
'libformw.so' 'libmenuw.so' 'libpanelw.so' 'libncursesw.so')
|
|
|
|
'libformw.so' 'libmenuw.so' 'libpanelw.so' 'libncursesw.so')
|
|
|
|
source=(ftp://invisible-island.net/ncurses/ncurses-${pkgver/_/-}.tar.gz{,.asc})
|
|
|
|
source=(ftp://invisible-island.net/ncurses/ncurses-${pkgver/_/-}.tar.gz{,.asc})
|
|
|
|
md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1'
|
|
|
|
md5sums=('ee13d052e1ead260d7c28071f46eefb1'
|
|
|
|
'SKIP')
|
|
|
|
'SKIP')
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
|
|
|
|
|
|
|
@ -25,8 +25,8 @@ build() {
|
|
|
|
cd ncursesw-build
|
|
|
|
cd ncursesw-build
|
|
|
|
../$pkgname-${pkgver/_/-}/configure --prefix=/usr --mandir=/usr/share/man \
|
|
|
|
../$pkgname-${pkgver/_/-}/configure --prefix=/usr --mandir=/usr/share/man \
|
|
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
|
|
--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
|
|
|
|
--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared \
|
|
|
|
# add --enable-ext-colors and --enable-ext-mouse with next soname bump
|
|
|
|
--enable-ext-colors --enable-ext-mouse
|
|
|
|
make
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
|
|
# libraries for external binary support
|
|
|
|
# libraries for external binary support
|
|
|
@ -58,7 +58,8 @@ package() {
|
|
|
|
# non-widec compatibility libraries
|
|
|
|
# non-widec compatibility libraries
|
|
|
|
cd "$srcdir"/ncurses-build
|
|
|
|
cd "$srcdir"/ncurses-build
|
|
|
|
for lib in ncurses form panel menu; do
|
|
|
|
for lib in ncurses form panel menu; do
|
|
|
|
install -Dm755 lib/lib${lib}.so.${pkgver%_*} "$pkgdir"/usr/lib/lib${lib}.so.${pkgver%_*}
|
|
|
|
install -Dm755 lib/lib${lib}.so.${pkgver%_*} \
|
|
|
|
|
|
|
|
"$pkgdir"/usr/lib/lib${lib}.so.${pkgver%_*}
|
|
|
|
ln -s lib${lib}.so.${pkgver%_*} "$pkgdir"/usr/lib/lib${lib}.so.5
|
|
|
|
ln -s lib${lib}.so.${pkgver%_*} "$pkgdir"/usr/lib/lib${lib}.so.5
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|