[arch-commits] Commit in ncurses/repos (4 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Mon Jan 30 07:29:19 UTC 2017


    Date: Monday, January 30, 2017 @ 07:29:19
  Author: bpiotrowski
Revision: 287753

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ncurses/repos/testing-i686/
  ncurses/repos/testing-i686/PKGBUILD
    (from rev 287752, ncurses/trunk/PKGBUILD)
  ncurses/repos/testing-x86_64/
  ncurses/repos/testing-x86_64/PKGBUILD
    (from rev 287752, ncurses/trunk/PKGBUILD)

-------------------------+
 testing-i686/PKGBUILD   |   49 ++++++++++++++++++++++++++++++++++++++++++++++
 testing-x86_64/PKGBUILD |   49 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)

Copied: ncurses/repos/testing-i686/PKGBUILD (from rev 287752, ncurses/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-01-30 07:29:19 UTC (rev 287753)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=ncurses
+_pkgver=6.0-20170128
+pkgver=${_pkgver/-/+}
+pkgrel=1
+pkgdesc='System V Release 4.0 curses emulation library'
+arch=('i686' 'x86_64')
+url='http://invisible-island.net/ncurses/ncurses.html'
+license=('MIT')
+depends=('glibc' 'gcc-libs')
+provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
+          'libncursesw.so')
+source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
+md5sums=('644f300b887f7e6c7aadf803caead9d9'
+         'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
+
+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
+  make
+}
+
+package() {
+  cd $pkgname-${_pkgver}
+  make DESTDIR="$pkgdir" install
+
+  # 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 -s ${lib}w.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
+
+  # install license, rip it from the readme
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: ncurses/repos/testing-x86_64/PKGBUILD (from rev 287752, ncurses/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-01-30 07:29:19 UTC (rev 287753)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=ncurses
+_pkgver=6.0-20170128
+pkgver=${_pkgver/-/+}
+pkgrel=1
+pkgdesc='System V Release 4.0 curses emulation library'
+arch=('i686' 'x86_64')
+url='http://invisible-island.net/ncurses/ncurses.html'
+license=('MIT')
+depends=('glibc' 'gcc-libs')
+provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
+          'libncursesw.so')
+source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
+md5sums=('644f300b887f7e6c7aadf803caead9d9'
+         'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
+
+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
+  make
+}
+
+package() {
+  cd $pkgname-${_pkgver}
+  make DESTDIR="$pkgdir" install
+
+  # 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 -s ${lib}w.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
+
+  # install license, rip it from the readme
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



More information about the arch-commits mailing list