blob: b99794f481a994364960034c290cffaa2fff2f7c (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "-------------------------->"
echo "The headers have been installed to '/usr/local/include/ftxui' and libraries to /usr/local/lib/ftxui, namely 'libcomponent.a', 'libdom.a', 'libscreen.a'"
echo "Don't Forget to link with the libraries :D"
echo "<--------------------------"
}
post_upgrade() {
post_install
}
|