mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 08:02:26 +01:00
107 lines
2.9 KiB
Plaintext
107 lines
2.9 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=ncurses
|
|
pkgver=6.1_p20190420
|
|
_ver=${pkgver/_p/-}
|
|
pkgrel=0
|
|
pkgdesc="Console display library"
|
|
url="https://www.gnu.org/software/ncurses/"
|
|
arch="all"
|
|
options="!check" # "tests" are actual demo programs, not a test suite.
|
|
license="MIT"
|
|
makedepends_build="ncurses"
|
|
subpackages="$pkgname-static $pkgname-dev $pkgname-doc $pkgname-libs
|
|
$pkgname-terminfo-base:base:noarch $pkgname-terminfo:terminfo:noarch"
|
|
source="https://invisible-mirror.net/archives/ncurses/current/ncurses-${_ver}.tgz"
|
|
builddir="$srcdir"/ncurses-$_ver
|
|
|
|
# secfixes:
|
|
# 6.1_p20180414-r0:
|
|
# - CVE-2018-10754
|
|
# 6.0_p20171125-r0:
|
|
# - CVE-2017-16879
|
|
# 6.0_p20170701-r0:
|
|
# - CVE-2017-10684
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--mandir=/usr/share/man \
|
|
--without-ada \
|
|
--without-tests \
|
|
--disable-termcap \
|
|
--disable-rpath-hack \
|
|
--disable-stripping \
|
|
--with-pkg-config-libdir=/usr/lib/pkgconfig \
|
|
--without-cxx-binding \
|
|
--with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo:/lib/terminfo:/usr/lib/terminfo" \
|
|
--enable-pc-files \
|
|
--with-shared \
|
|
--enable-widec
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
|
|
# Install basic terms in /etc/terminfo
|
|
for i in ansi console dumb linux rxvt screen sun vt52 vt100 vt102 \
|
|
vt200 vt220 xterm xterm-color xterm-xfree86; do
|
|
local termfile=$(find "$pkgdir"/usr/share/terminfo/ -name "$i" 2>/dev/null) || true
|
|
local basedir=$(basename $(dirname "$termfile"))
|
|
|
|
[ -z "$termfile" ] && continue
|
|
|
|
install -d "$pkgdir"/etc/terminfo/$basedir
|
|
mv ${termfile} "$pkgdir"/etc/terminfo/$basedir/
|
|
ln -s ../../../../etc/terminfo/$basedir/$i \
|
|
"$pkgdir"/usr/share/terminfo/$basedir/$i
|
|
done
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
# force link against *w.so
|
|
for lib in ncurses ncurses++ form panel menu; do
|
|
echo "INPUT(-l${lib}w)" > "$subpkgdir"/usr/lib/lib${lib}.so
|
|
ln -s ${lib}w.pc "$subpkgdir"/usr/lib/pkgconfig/${lib}.pc
|
|
done
|
|
# link curses -> ncurses
|
|
echo "INPUT(-lncursesw)" > "$subpkgdir"/usr/lib/libcursesw.so
|
|
ln -s libncurses.so "$subpkgdir"/usr/lib/libcurses.so
|
|
}
|
|
|
|
terminfo() {
|
|
pkgdesc="$pkgdesc (other terminfo files)"
|
|
depends="$pkgname-terminfo-base"
|
|
rm -rf $subpkgdir
|
|
mkdir -p $subpkgdir/usr/share
|
|
mv $pkgdir/usr/share/terminfo $subpkgdir/usr/share
|
|
}
|
|
|
|
libs() {
|
|
pkgdesc="Ncurses libraries"
|
|
depends="$pkgname-terminfo-base"
|
|
provides="ncurses-widec-libs=$pkgver-r$pkgrel"
|
|
|
|
mkdir -p "$subpkgdir"/usr/
|
|
mv "$pkgdir"/usr/lib "$subpkgdir"/usr/
|
|
}
|
|
|
|
base() {
|
|
pkgdesc="Descriptions of common terminals"
|
|
mkdir -p "$subpkgdir"/etc
|
|
mv "$pkgdir"/etc/terminfo "$subpkgdir"/etc/
|
|
}
|
|
|
|
static() {
|
|
pkgdesc="Static libraries for the ncurses library"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="5e87e0c7361f5695cffd04234971ce88ba8c991049b5355c707fae93537ba9f5b9c3eabcca3115b32c77f392efa36c94224896359dcc52742962bd5f69ae09a6 ncurses-6.1-20190420.tgz"
|