core/ncurses/PKGBUILD

57 lines
1.9 KiB
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
pkgname=ncurses
2018-01-19 07:35:30 +08:00
_pkgver=6.0-20180106
2017-01-17 04:09:40 +08:00
pkgver=${_pkgver/-/+}
2016-10-12 17:58:39 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="System V Release 4.0 curses emulation library"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.gnu.org/software/ncurses/"
license=('MIT')
depends=('glibc')
provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so' 'libncursesw.so')
2017-01-17 04:09:40 +08:00
source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
2018-01-19 07:35:30 +08:00
md5sums=('5f4114b86adf15121ec5ae71e8c1ef73'
2016-10-12 17:58:39 +08:00
'SKIP')
2017-01-17 04:09:40 +08:00
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
2015-01-23 05:45:32 +08:00
build() {
2017-01-17 04:09:40 +08:00
cd $pkgname-${_pkgver}
2016-10-12 17:58:39 +08:00
./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 \
2018-01-19 07:35:30 +08:00
--with-termlib=tinfo --with-ticlib=tic \
2016-10-12 17:58:39 +08:00
--enable-ext-colors --enable-ext-mouse
make
2010-05-16 23:08:55 +08:00
}
package() {
2017-01-17 04:09:40 +08:00
cd $pkgname-${_pkgver}
2016-10-12 17:58:39 +08:00
make DESTDIR="$pkgdir" install
2010-03-13 23:25:19 +08:00
# Fool packages looking to link to non-wide-character ncurses libraries
2016-10-12 17:58:39 +08:00
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"
2010-03-13 23:25:19 +08:00
done
2018-01-19 07:35:30 +08:00
# don't require -ltinfo when linking with --no-add-needed
rm -f "$pkgdir/usr/lib/libncursesw.so"
echo "INPUT(libncursesw.so.${pkgver:0:1} -ltinfo)" > "$pkgdir/usr/lib/libncursesw.so"
2010-03-13 23:25:19 +08:00
# Some packages look for -lcurses during build
echo "INPUT(-lncursesw)" >"${pkgdir}/usr/lib/libcursesw.so"
ln -sf libncurses.so "${pkgdir}/usr/lib/libcurses.so"
2010-03-13 23:25:19 +08:00
# install license, rip it from the readme
2016-10-12 17:58:39 +08:00
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
grep -B 100 '$Id' README > "${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
2010-03-13 23:25:19 +08:00
}