blob: 4d7512cdc3828a5f7a699abbb7e5da64478043a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
repo_info
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
repo_info() {
echo "============================="
echo "You can download the package in repo:"
echo "[home_alextalker_aur_Arch_Extra]"
echo "SigLevel = Never"
echo 'Server = http://download.opensuse.org/repositories/home:/alextalker:/aur/Arch_Extra/$arch'
}
|