blob: fb6d8a35c429d63b0bc94b995f782efc613dd7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
binary_message() {
echo "To prevent problems with software of other coins the binaries for this package are as follows:"
echo " connectivity_tool => trtl-connectivity_tool"
echo " miner => trtl-miner"
echo " simplewallet => trtl-simplewallet"
echo " walletd => trtl-walletd"
echo
}
post_install() {
binary_message
}
post_upgrade() {
binary_message
}
|