Last active
February 13, 2017 17:08
-
-
Save jdnavarro/975158123f34b5c8f156 to your computer and use it in GitHub Desktop.
Updated libtinfo AUR PKGBUILD for ncurses-6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alexej Magura <agm2819*gmail*> | |
# | |
# | |
pkgname=libtinfo | |
pkgver=5 | |
pkgrel=7 | |
pkgdesc="symlink to ncurses for use in cuda and other packages" | |
arch=('any') | |
url="http://www.gnu.org/software/ncurses/" | |
license=('unknown') | |
depends=('ncurses') | |
#source=("") | |
#md5sums=('') | |
_ncurses="$(pacman -Q $depends | awk '{sub(/-[0-9]+/, "", $2); print $2}')" | |
package() { | |
install -d "$pkgdir"/usr/lib | |
ln -s /usr/lib/libncursesw.so."$_ncurses" -T "$pkgdir"/usr/lib/libtinfo.so."$pkgver" | |
ln -s /usr/lib/libtinfo.so."$pkgver" -T "$pkgdir"/usr/lib/libtinfo.so | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment