update all the packages, remove some unneeded ones
This commit is contained in:
5
src/ncurses5-compat-libs/.gitignore
vendored
Normal file
5
src/ncurses5-compat-libs/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*.asc
|
||||
*.tgz
|
||||
logs/
|
||||
*.pkg.tar.xz
|
||||
*.sig
|
42
src/ncurses5-compat-libs/PKGBUILD
Normal file
42
src/ncurses5-compat-libs/PKGBUILD
Normal file
@@ -0,0 +1,42 @@
|
||||
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
||||
# Contributor: Allan McRae <allan@archlinux.org>
|
||||
# Contributor: judd <jvinet@zeroflux.org>
|
||||
|
||||
pkgname=ncurses5-compat-libs
|
||||
_pkgname=ncurses
|
||||
pkgver=6.1
|
||||
pkgrel=1
|
||||
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{,.sig})
|
||||
md5sums=('98c889aaf8d23910d2b92d65be2e737a'
|
||||
'SKIP')
|
||||
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
||||
|
||||
build() {
|
||||
cd ${_pkgname}-${pkgver}
|
||||
|
||||
./configure --prefix=/usr --mandir=/usr/share/man \
|
||||
--with-shared --with-normal --without-debug --without-ada --enable-widec \
|
||||
--disable-pc-files --with-cxx-binding --with-cxx-shared --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
|
||||
|
||||
for lib in ncurses ncurses++ form panel menu; do
|
||||
ln -s /usr/lib/lib${lib}w.so.5 "$pkgdir/usr/lib/lib${lib}.so.5"
|
||||
done
|
||||
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"
|
||||
}
|
Reference in New Issue
Block a user