diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-17 19:27:42 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-17 19:27:42 +0000 |
commit | 049af7a95b01eba14d33586ad5852dddaf107e53 (patch) | |
tree | 3f89f26ef1ec32f03b8842f97077b7d3459ba6d0 /testing/ncurses/PKGBUILD | |
parent | 84837d89991e1e82e5aef8e297541c572ebf2efa (diff) |
Fixed
Diffstat (limited to 'testing/ncurses/PKGBUILD')
-rw-r--r-- | testing/ncurses/PKGBUILD | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/testing/ncurses/PKGBUILD b/testing/ncurses/PKGBUILD deleted file mode 100644 index 1b387c6b1..000000000 --- a/testing/ncurses/PKGBUILD +++ /dev/null @@ -1,73 +0,0 @@ -# $Id: PKGBUILD 118921 2011-04-09 12:39:04Z allan $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> - -pkgname=ncurses -pkgver=5.9 -pkgrel=1 -pkgdesc="System V Release 4.0 curses emulation library" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/ncurses/" -license=('MIT') -depends=('glibc') -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1') - -build() { - cd ${srcdir}/ - mkdir ncurses{,w}-build - - cd ${srcdir}/ncursesw-build - ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} --enable-widec - # add --enable-ext-colors with next soname bump - make - - # libncurses.so.5 for external binary support - cd ${srcdir}/ncurses-build - [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" - ../${pkgname}-${pkgver}/configure --prefix=/usr \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} $CONFIGFLAG - make -} - -package() { - cd ${srcdir}/ncursesw-build - make install - - # move libraries needed for boot to /lib (we call tput in initscripts) - install -dm755 ${pkgdir}/lib - mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib - ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so - - # Fool packages looking to link to non-wide-character ncurses libraries - for lib in curses ncurses form panel menu; do - rm -f ${pkgdir}/usr/lib/lib${lib}.so - echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so - ln -sf lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a - done - ln -sf libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a - - # install tput to /bin - install -dm755 ${pkgdir}/bin/ - mv ${pkgdir}/usr/bin/tput ${pkgdir}/bin/tput - - # Some packages look for -lcurses during build - rm -f ${pkgdir}/usr/lib/libcursesw.so - echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so - ln -sf libncurses.so ${pkgdir}/usr/lib/libcurses.so - ln -sf libncursesw.a ${pkgdir}/usr/lib/libcursesw.a - ln -sf libncurses.a ${pkgdir}/usr/lib/libcurses.a - - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver} - ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5 - - # install license, rip it from the readme - cd ${srcdir}/${pkgname}-${pkgver} - install -dm755 ${pkgdir}/usr/share/licenses/$pkgname - grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt -} |