2018-05-21 19:56:30 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# Copyright (C) 2018 Intel Corporation
|
2018-05-21 19:56:30 +08:00
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# SPDX-License-Identifier: MIT
|
2018-05-21 19:56:30 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
wget https://aur.archlinux.org/cgit/aur.git/snapshot/ncurses5-compat-libs.tar.gz
|
|
|
|
tar -xzf ncurses5-compat-libs.tar.gz
|
|
|
|
pushd ncurses5-compat-libs
|
|
|
|
makepkg --skippgpcheck -i --noconfirm
|
|
|
|
popd
|
|
|
|
|