blob: 10c229624f85c65996f1877128e668bcabf5d91f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
post_install() {
if [ -d "/usr/share/pixmaps/pidgin/emotes" ]; then
ln -sf "/usr/share/emoticons/ar-smileys" "/usr/share/pixmaps/pidgin/emotes/ar-smileys"
fi
}
post_remove() {
rm -f "/usr/share/pixmaps/pidgin/emotes/ar-smileys"
}
# vim:set ts=2 sw=2 et:
|