blob: f8ad27310606876d90c8b9305eeb57b130433a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# arg 1: the new package version
pre_install() {
/bin/true
}
# arg 1: the new package version
post_install() {
echo
echo "Oxford sound files support included. Follow these steps to use it:"
echo "1. Copy wave.wol and wave.000 to /usr/share/kydpdict."
echo "2. Use exwaves to get sound files in /usr/share/kydpdict/wave."
echo "3. Configure kydpdict to read sounds from /usr/share/kydpdict/wave."
echo "4. Set mpg321 as audio player (run 'pacman -S mpg321' if you don't have it)."
echo "5. Remove wave.wol and wave.000."
echo
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install
}
|