bump to latest "development" snapshot (FS#41663)
- ensure that C++ bindings are enabled and shipped (FS#42356) - add libprovidesledoian
parent
dcdacb5a77
commit
ad44c479b6
@ -1,63 +1,68 @@
|
|||||||
# Maintainer: Allan McRae <allan@archlinux.org>
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
||||||
|
# Contributor: Allan McRae <allan@archlinux.org>
|
||||||
# Contributor: judd <jvinet@zeroflux.org>
|
# Contributor: judd <jvinet@zeroflux.org>
|
||||||
|
|
||||||
pkgname=ncurses
|
pkgname=ncurses
|
||||||
pkgver=5.9
|
pkgver=5.9_20141101
|
||||||
pkgrel=6
|
pkgrel=1
|
||||||
pkgdesc="System V Release 4.0 curses emulation library"
|
pkgdesc='System V Release 4.0 curses emulation library'
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
url="http://www.gnu.org/software/ncurses/"
|
url='http://invisible-island.net/ncurses/ncurses.html'
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
depends=('glibc')
|
depends=('glibc' 'gcc-libs' 'sh')
|
||||||
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
|
provides=('libmenu.so' 'libpanel.so' 'libform.so' 'libncurses.so' 'libncurses++w.so'
|
||||||
md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1'
|
'libformw.so' 'libmenuw.so' 'libpanelw.so' 'libncursesw.so')
|
||||||
'014ffdbbfec6d41a9a89d6cbe6434638')
|
source=(ftp://invisible-island.net/ncurses/current/ncurses-${pkgver/_/-}.tgz{,.asc})
|
||||||
|
md5sums=('87500270f8b1ba911228c940bad30ed1'
|
||||||
|
'SKIP')
|
||||||
|
|
||||||
build() {
|
prepare() {
|
||||||
cd ${srcdir}/
|
|
||||||
mkdir ncurses{,w}-build
|
mkdir ncurses{,w}-build
|
||||||
|
}
|
||||||
|
|
||||||
cd ${srcdir}/ncursesw-build
|
build() {
|
||||||
../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \
|
cd ncursesw-build
|
||||||
|
../$pkgname-${pkgver/_/-}/configure --prefix=/usr --mandir=/usr/share/man \
|
||||||
--with-shared --with-normal --without-debug --without-ada \
|
--with-shared --with-normal --without-debug --without-ada \
|
||||||
--enable-widec --enable-pc-files
|
--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
|
||||||
# add --enable-ext-colors and --enable-ext-mouse with next soname bump
|
# add --enable-ext-colors and --enable-ext-mouse with next soname bump
|
||||||
make
|
make
|
||||||
|
|
||||||
# libraries for external binary support
|
# libraries for external binary support
|
||||||
cd ${srcdir}/ncurses-build
|
cd ${srcdir}/ncurses-build
|
||||||
[ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long"
|
[[ $CARCH = "x86_64" ]] && CONFIGFLAG="--with-chtype=long"
|
||||||
../${pkgname}-${pkgver}/configure --prefix=/usr \
|
../$pkgname-${pkgver/_/-}/configure --prefix=/usr \
|
||||||
--with-shared --with-normal --without-debug --without-ada $CONFIGFLAG
|
--with-shared --with-normal --without-debug --without-ada $CONFIGFLAG \
|
||||||
|
--with-cxx-binding --with-cxx-shared
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd ${srcdir}/ncursesw-build
|
cd ncursesw-build
|
||||||
make DESTDIR=${pkgdir} install
|
make DESTDIR="$pkgdir" install
|
||||||
|
|
||||||
# fool packages looking to link to non-wide-character ncurses libraries
|
# fool packages looking to link to non-wide-character ncurses libraries
|
||||||
for lib in ncurses form panel menu; do
|
for lib in ncurses ncurses++ form panel menu; do
|
||||||
echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so
|
echo "INPUT(-l${lib}w)" > "$pkgdir"/usr/lib/lib${lib}.so
|
||||||
done
|
done
|
||||||
|
|
||||||
for lib in ncurses ncurses++ form panel menu; do
|
for lib in ncurses ncurses++ form panel menu; do
|
||||||
ln -s ${lib}w.pc ${pkgdir}/usr/lib/pkgconfig/${lib}.pc
|
ln -s ${lib}w.pc "$pkgdir"/usr/lib/pkgconfig/${lib}.pc
|
||||||
done
|
done
|
||||||
|
|
||||||
# some packages look for -lcurses during build
|
# some packages look for -lcurses during build
|
||||||
echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so
|
echo "INPUT(-lncursesw)" > "$pkgdir"/usr/lib/libcursesw.so
|
||||||
ln -s libncurses.so ${pkgdir}/usr/lib/libcurses.so
|
ln -s libncurses.so "$pkgdir"/usr/lib/libcurses.so
|
||||||
|
|
||||||
# non-widec compatibility libraries
|
# non-widec compatibility libraries
|
||||||
cd ${srcdir}/ncurses-build
|
cd "$srcdir"/ncurses-build
|
||||||
for lib in ncurses form panel menu; do
|
for lib in ncurses form panel menu; do
|
||||||
install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.${pkgver}
|
install -Dm755 lib/lib${lib}.so.${pkgver%_*} "$pkgdir"/usr/lib/lib${lib}.so.${pkgver%_*}
|
||||||
ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.5
|
ln -s lib${lib}.so.${pkgver%_*} "$pkgdir"/usr/lib/lib${lib}.so.5
|
||||||
done
|
done
|
||||||
|
|
||||||
# install license, rip it from the readme
|
# install license, rip it from the readme
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
cd "$srcdir"/$pkgname-${pkgver/_/-}
|
||||||
install -dm755 ${pkgdir}/usr/share/licenses/$pkgname
|
install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
|
||||||
grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
|
grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue