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.
60 lines
2.1 KiB
Bash
60 lines
2.1 KiB
Bash
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
_pkgbasename=ncurses
|
|
pkgname=lib32-${_pkgbasename}
|
|
pkgver=6.2
|
|
pkgrel=1
|
|
pkgdesc="System V Release 4.0 curses emulation library (32-bit)"
|
|
arch=('x86_64')
|
|
url="https://www.gnu.org/software/ncurses/"
|
|
license=('MIT')
|
|
depends=('lib32-glibc' ${_pkgbasename})
|
|
source=(https://ftp.gnu.org/pub/gnu/ncurses/ncurses-${pkgver}.tar.gz{,.sig})
|
|
sha512sums=('4c1333dcc30e858e8a9525d4b9aefb60000cfc727bc4a1062bace06ffc4639ad9f6e54f6bdda0e3a0e5ea14de995f96b52b3327d9ec633608792c99a1e8d840d'
|
|
'SKIP')
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
build() {
|
|
cd ${_pkgbasename}-${pkgver}
|
|
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
|
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
|
--with-pkg-config-libdir=/usr/lib32/pkgconfig \
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
--enable-widec --libdir=/usr/lib32 --with-manpage-format=normal
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${_pkgbasename}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
# fool packages looking to link to non-wide-character ncurses libraries
|
|
for lib in curses ncurses form panel menu; do
|
|
echo "INPUT(-l${lib}w)" >"${pkgdir}"/usr/lib32/lib${lib}.so
|
|
ln -sf lib${lib}w.a "${pkgdir}"/usr/lib32/lib${lib}.a
|
|
done
|
|
ln -sf libncurses++w.a "${pkgdir}"/usr/lib32/libncurses++.a
|
|
|
|
for lib in tic tinfo; do
|
|
echo "INPUT(libncursesw.so.${pkgver:0:1})" > "${pkgdir}/usr/lib32/lib${lib}.so"
|
|
ln -s libncursesw.so.${pkgver:0:1} "${pkgdir}/usr/lib32/lib${lib}.so.${pkgver:0:1}"
|
|
done
|
|
|
|
# some packages look for -lcurses during build
|
|
rm -f "${pkgdir}"/usr/lib32/libcursesw.so
|
|
echo "INPUT(-lncursesw)" >"${pkgdir}"/usr/lib32/libcursesw.so
|
|
ln -sf libncurses.so "${pkgdir}"/usr/lib32/libcurses.so
|
|
ln -sf libncursesw.a "${pkgdir}"/usr/lib32/libcursesw.a
|
|
ln -sf libncurses.a "${pkgdir}"/usr/lib32/libcurses.a
|
|
|
|
rm -rf "${pkgdir}"/usr/{include,share,bin}
|
|
mkdir -p "${pkgdir}/usr/share/licenses"
|
|
ln -s ${_pkgbasename} "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|
|
|
|
# vim: set et ts=2 sw=2:
|