Hi,
And first sorry for my last comment, I didn’t really checked before asking :/
However I can confirm that tput (and thus ncurses) look like an optional dependency nowadays.
On another subject, there are now tests in the upstream repository, it might be interesting to run them in a check
function?
check() {
cd "$pkgname-$pkgver"
./tests.sh
}
And finally, since the version 2, a new theme system has been introduced, with some default themes, which should also be included in the package:
install -dm755 "$pkgdir/usr/share/liquidprompt/themes"
for theme in themes/*; do
theme_name="$(basename $theme)"
cp -R "$theme" "$pkgdir/usr/share/liquidprompt/themes/$theme_name"
done
What do you think?
Pinned Comments
phantom94 commented on 2018-04-25 15:12 (UTC)
Note: this package follows the releases as shown on https://github.com/nojhan/liquidprompt/releases
You can install liquidprompt-git if you want to run the master branch.