diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/kydpdict/kydpdict.install |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/kydpdict/kydpdict.install')
-rw-r--r-- | community/kydpdict/kydpdict.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/kydpdict/kydpdict.install b/community/kydpdict/kydpdict.install new file mode 100644 index 000000000..f8ad27310 --- /dev/null +++ b/community/kydpdict/kydpdict.install @@ -0,0 +1,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 +} + |