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.
48 lines
1.6 KiB
Bash
48 lines
1.6 KiB
Bash
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=ncurses
|
|
pkgver=6.0
|
|
pkgrel=3
|
|
pkgdesc='System V Release 4.0 curses emulation library'
|
|
arch=('i686' 'x86_64')
|
|
url='http://invisible-island.net/ncurses/ncurses.html'
|
|
license=('MIT')
|
|
depends=('glibc' 'gcc-libs')
|
|
provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
|
|
'libncursesw.so')
|
|
source=(ftp://invisible-island.net/ncurses/ncurses-${pkgver/_/-}.tar.gz{,.asc})
|
|
md5sums=('ee13d052e1ead260d7c28071f46eefb1'
|
|
'SKIP')
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
build() {
|
|
cd $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 \
|
|
--enable-ext-colors --enable-ext-mouse
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-${pkgver/_/-}
|
|
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
|
|
ln -s ${lib}w.pc "$pkgdir"/usr/lib/pkgconfig/${lib}.pc
|
|
done
|
|
|
|
# some packages look for -lcurses during build
|
|
echo "INPUT(-lncursesw)" > "$pkgdir"/usr/lib/libcursesw.so
|
|
ln -s libncurses.so "$pkgdir"/usr/lib/libcurses.so
|
|
|
|
# install license, rip it from the readme
|
|
install -d "$pkgdir"/usr/share/licenses/$pkgname
|
|
grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|