PKGBUILDs/core/ncurses/PKGBUILD

64 lines
2.3 KiB
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# Maintainer: Philipp Scholl <pscholl@bawue.de>
2009-09-26 16:30:17 +00:00
# Modified by OpenPogo
2009-09-26 14:35:50 +00:00
pkgname=ncurses
pkgver=5.7
pkgrel=3
pkgdesc="System V Release 4.0 curses emulation library"
arch=(arm)
url="http://www.gnu.org/software/ncurses/"
license=('MIT')
groups=('base')
2009-09-26 16:30:17 +00:00
depends=()
2009-09-26 14:35:50 +00:00
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('cce05daf61a64501ef6cd8da1f727ec6')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2009-09-26 16:30:17 +00:00
./configure --prefix=/opt --mandir=/opt/share/man \
2009-09-26 14:35:50 +00:00
--with-shared --with-normal --without-debug --without-ada \
--with-install-prefix=${pkgdir} --enable-widec
make || return 1
make install
2009-09-26 16:30:17 +00:00
# move libraries needed for boot to /opt/lib (we call tput in initscripts)
install -dm755 ${pkgdir}/opt/lib
# mv ${pkgdir}/opt/lib/libncursesw.so.5* ${pkgdir}/lib
ln -sf ${pkgdir}/opt/lib/libncursesw.so.5 ${pkgdir}/opt/lib/libncursesw.so
2009-09-26 14:35:50 +00:00
# Fool packages looking to link to non-wide-character ncurses libraries
for lib in curses ncurses form panel menu ; do \
2009-09-26 16:30:17 +00:00
rm -f ${pkgdir}/opt/lib/lib${lib}.so ; \
echo "INPUT(-l${lib}w)" >${pkgdir}/opt/lib/lib${lib}.so ; \
ln -sf lib${lib}w.a ${pkgdir}/opt/lib/lib${lib}.a ; \
2009-09-26 14:35:50 +00:00
done
2009-09-26 16:30:17 +00:00
ln -sf libncurses++w.a ${pkgdir}/opt/lib/libncurses++.a
2009-09-26 14:35:50 +00:00
2009-09-26 16:30:17 +00:00
# install tput to /opt/bin
install -dm755 ${pkgdir}/opt/bin/
# mv ${pkgdir}/opt/bin/tput ${pkgdir}/bin/tput
2009-09-26 14:35:50 +00:00
# Some packages look for -lcurses during build
2009-09-26 16:30:17 +00:00
rm -f ${pkgdir}/opt/lib/libcursesw.so
echo "INPUT(-lncursesw)" >${pkgdir}/opt/lib/libcursesw.so
ln -sf libncurses.so ${pkgdir}/opt/lib/libcurses.so
ln -sf libncursesw.a ${pkgdir}/opt/lib/libcursesw.a
ln -sf libncurses.a ${pkgdir}/opt/lib/libcurses.a
2009-09-26 14:35:50 +00:00
# Install libncurses.so.5 for external binary support
[ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long"
2009-09-26 16:30:17 +00:00
./configure --prefix=/opt \
2009-09-26 14:35:50 +00:00
--with-shared --with-normal --without-debug --without-ada \
--with-install-prefix=${pkgdir} $CONFIGFLAG
make || return 1
2009-09-26 16:30:17 +00:00
install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/opt/lib/libncurses.so.${pkgver}
ln -sf libncurses.so.${pkgver} ${pkgdir}/opt/lib/libncurses.so.5
2009-09-26 14:35:50 +00:00
# install license, rip it from the readme
cd ${srcdir}/${pkgname}-${pkgver}
2009-09-26 16:30:17 +00:00
install -dm755 ${pkgdir}/opt/share/licenses/$pkgname
grep -B 100 '$Id' README > ${pkgdir}/opt/share/licenses/${pkgname}/license.txt
2009-09-26 14:35:50 +00:00
}