You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.4 KiB
Bash

# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
16 years ago
# Contributor: judd <jvinet@zeroflux.org>
pkgname=ncurses
pkgver=5.9
pkgrel=7
pkgdesc='System V Release 4.0 curses emulation library'
16 years ago
arch=('i686' 'x86_64')
url='http://invisible-island.net/ncurses/ncurses.html'
license=('MIT')
depends=('glibc' 'gcc-libs' 'sh')
provides=('libmenu.so' 'libpanel.so' 'libform.so' 'libncurses.so' 'libncurses++w.so'
'libformw.so' 'libmenuw.so' 'libpanelw.so' 'libncursesw.so')
source=(ftp://invisible-island.net/ncurses/ncurses-${pkgver/_/-}.tar.gz{,.asc})
md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1'
'SKIP')
9 years ago
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
prepare() {
mkdir ncurses{,w}-build
}
14 years ago
build() {
cd ncursesw-build
../$pkgname-${pkgver/_/-}/configure --prefix=/usr --mandir=/usr/share/man \
--with-shared --with-normal --without-debug --without-ada \
--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
# add --enable-ext-colors and --enable-ext-mouse with next soname bump
14 years ago
make
# libraries for external binary support
cd ${srcdir}/ncurses-build
[[ $CARCH = "x86_64" ]] && CONFIGFLAG="--with-chtype=long"
../$pkgname-${pkgver/_/-}/configure --prefix=/usr \
--with-shared --with-normal --without-debug --without-ada $CONFIGFLAG \
--with-cxx-binding --with-cxx-shared
14 years ago
make
}
package() {
cd ncursesw-build
make DESTDIR="$pkgdir" install
# fool packages looking to link to non-wide-character ncurses libraries
for lib in ncurses ncurses++ form panel menu; do
echo "INPUT(-l${lib}w)" > "$pkgdir"/usr/lib/lib${lib}.so
16 years ago
done
for lib in ncurses ncurses++ form panel menu; do
ln -s ${lib}w.pc "$pkgdir"/usr/lib/pkgconfig/${lib}.pc
done
16 years ago
# some packages look for -lcurses during build
echo "INPUT(-lncursesw)" > "$pkgdir"/usr/lib/libcursesw.so
ln -s libncurses.so "$pkgdir"/usr/lib/libcurses.so
# non-widec compatibility libraries
cd "$srcdir"/ncurses-build
for lib in ncurses form panel menu; do
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
done
# install license, rip it from the readme
cd "$srcdir"/$pkgname-${pkgver/_/-}
install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}