72 lines
2.1 KiB
Bash
72 lines
2.1 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun/jobcore/$pkgname"
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=ncurses
|
|
pkgver=6.2
|
|
pkgrel=01
|
|
pkgdesc='System V Release 4.0 curses emulation library'
|
|
arch=(x86_64)
|
|
url='https://invisible-island.net/ncurses/ncurses.html'
|
|
depends=(glibc gcc-libs)
|
|
optdepends=('bash: for ncursesw6-config')
|
|
provides=(libncurses++w.so libformw.so libmenuw.so libpanelw.so libncursesw.so)
|
|
replaces=(alacritty-terminfo)
|
|
source=("https://ftp.gnu.org/pub/gnu/ncurses/ncurses-$pkgver.tar.gz"{,.sig})
|
|
|
|
# FIXME
|
|
# prepare() {
|
|
# cd $pkgname-$pkgver
|
|
#
|
|
# autoreconf -fiv
|
|
# }
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--with-pkg-config-libdir=/usr/lib/pkgconfig \
|
|
--with-shared \
|
|
--with-normal \
|
|
--without-debug \
|
|
--without-ada \
|
|
--enable-widec \
|
|
--enable-pc-files \
|
|
--with-cxx-binding \
|
|
--with-cxx-shared \
|
|
--with-manpage-format=normal
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
install -vDm 644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
|
|
|
|
# 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 -sv ${lib}w.pc "$pkgdir/usr/lib/pkgconfig/${lib}.pc"
|
|
done
|
|
|
|
for lib in tic tinfo; do
|
|
echo "INPUT(libncursesw.so.${pkgver:0:1})" > "$pkgdir/usr/lib/lib${lib}.so"
|
|
ln -sv libncursesw.so.${pkgver:0:1} "$pkgdir/usr/lib/lib${lib}.so.${pkgver:0:1}"
|
|
ln -sv ncursesw.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"
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=(MIT)
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey <dickey@invisible-island.net>
|
|
|
|
sha256sums=()
|