blob: 2b9d72325d3ea8e47ddd25511560ca35628c5970 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "##########################################"
echo "# dpsprep-git package deprecation notice #"
echo "##########################################"
echo "#"
echo "# The 'dpsprep-git' AUR package will be abandoned soon. Consider the fixed-version 'dpsprep' package instead."
echo "# VCS packages are more fragile and the upstream project does not accumulate enough changes to justify both AUR packages."
echo "#"
}
post_upgrade() {
post_install
}
|