blob: 592612e1169e8219cd37046b50202e75b9cec15a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# hetrix.install
# This file gets sourced by pacman during package operations
post_install() {
echo "=================================================="
echo "hetrix has been successfully installed!"
echo ""
echo "To get started:"
echo "Run hetrix init to seed index and config"
echo "Check the README.md online in the link bellow"
echo ""
echo ""
echo "For more information visit:"
echo "https://codeberg.org/Druid520/hetrix"
echo "Visit the wiki at:"
echo "https://druid520.codeberg.page/"
echo "=================================================="
}
post_upgrade() {
echo "=================================================="
echo "hetrix has been updated!"
echo "=================================================="
}
# Optional: Display message on removal
pre_remove() {
echo "Removing hetrix... sorry to see you go :("
}
|