blob: 220c882492153646c8cf64af61787af05be238cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
uela() {
echo " > By installing this package you acknowledge that you agree to the End-User"
echo " > License Agreement (EULA) found in /usr/share/doc/vmware-horizon-client/."
echo " > If you do not agree to VMware EULA remove this package immediately:"
echo " > $ pacman -Rc vmware-horizon-client"
}
post_install() {
update-desktop-database -q
uela
}
post_upgrade(){
update-desktop-database -q
}
|