2010-03-13 23:25:19 +08:00
|
|
|
pkgname=ncurses
|
2016-10-12 17:58:39 +08:00
|
|
|
pkgver=6.0
|
|
|
|
pkgrel=1
|
2010-03-13 23:25:19 +08:00
|
|
|
pkgdesc="System V Release 4.0 curses emulation library"
|
2012-11-13 11:52:25 +08:00
|
|
|
arch=('x86_64')
|
2010-03-13 23:25:19 +08:00
|
|
|
url="http://www.gnu.org/software/ncurses/"
|
|
|
|
license=('MIT')
|
|
|
|
depends=('glibc')
|
2016-10-12 17:58:39 +08:00
|
|
|
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
|
|
|
|
md5sums=('ee13d052e1ead260d7c28071f46eefb1'
|
|
|
|
'SKIP')
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')
|
2012-07-28 20:09:59 +08:00
|
|
|
|
2015-01-23 05:45:32 +08:00
|
|
|
build() {
|
2016-10-12 17:58:39 +08:00
|
|
|
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 \
|
|
|
|
--enable-ext-colors --enable-ext-mouse
|
|
|
|
make
|
2010-05-16 23:08:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-10-12 17:58:39 +08:00
|
|
|
cd $pkgname-${pkgver/_/-}
|
|
|
|
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${lib}w.pc" "${pkgdir}/usr/lib/pkgconfig/${lib}.pc"
|
2010-03-13 23:25:19 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
# Some packages look for -lcurses during build
|
2012-07-28 20:09:59 +08:00
|
|
|
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}"
|
2012-07-28 20:09:59 +08:00
|
|
|
grep -B 100 '$Id' README > "${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
|
2010-03-13 23:25:19 +08:00
|
|
|
}
|
2012-07-28 20:09:59 +08:00
|
|
|
|