mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Maintainer: Mateusz Gozdek <mgozdekof@gmail.com>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=ncurses5-compat-libs
|
|
_pkgname=ncurses
|
|
pkgver=6.3
|
|
pkgrel=7
|
|
pkgdesc='System V Release 4.0 curses emulation library, ABI 5'
|
|
arch=(i686 x86_64)
|
|
url='http://invisible-island.net/ncurses/ncurses.html'
|
|
license=(MIT)
|
|
depends=(glibc gcc-libs sh)
|
|
provides=(libtinfo5)
|
|
conflicts=(libtinfo5)
|
|
source=(https://ftp.gnu.org/pub/gnu/ncurses/ncurses-$pkgver.tar.gz)
|
|
sha256sums=('97fc51ac2b085d4cde31ef4d2c3122c21abc217e9090a43a30fc5ec21684e059')
|
|
# validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
build() {
|
|
cd ${_pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--with-shared \
|
|
--with-normal \
|
|
--without-debug \
|
|
--without-ada \
|
|
--disable-pc-files \
|
|
--with-cxx-binding \
|
|
--with-cxx-shared \
|
|
--with-versioned-syms \
|
|
--with-abi-version=5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${_pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install.libs
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
rm -rf "$pkgdir/usr/include/" "$pkgdir/usr/lib/pkgconfig" \
|
|
"$pkgdir"/usr/lib/*.so "$pkgdir"/usr/lib/*.a
|
|
|
|
ln -s /usr/lib/libncurses.so.5 "$pkgdir/usr/lib/libtinfo.so.5"
|
|
ln -s /usr/lib/libncurses.so.5 "$pkgdir/usr/lib/libtic.so.5"
|
|
}
|