844742e846
- Update to ddskk-16.2 * Drop support for GNU Emacs 22 * Support GNU Emacs 26 * bayesian/bskk: Support Ruby 2.4 * A New variable, skk-candidate-buffer-delete-other-windows for users of popwin.el or shackle.el * A New variable, skk-show-candidates-nth-henkan-char to configure the number of space keys to show a candidate list * A New variable, skk-henkan-number-to-display-candidates to specify the number of candidates on a candidate list at once obsoleting skk-henkan-show-candidates-rows - Update to ddskk-16.1 * Support GNU Emacs 25 * Update documents - Update dictionary to 20180304 - Drop edict dictionary * edict is now considered as non-free - Remove unnecessary documents - Fix License tag since some dictionary files are not distributed under GPL-2.0+ - Update the source code URL to GitHub OBS-URL: https://build.opensuse.org/request/show/584425 OBS-URL: https://build.opensuse.org/package/show/M17N/ddskk?expand=0&rev=22
22 lines
529 B
Bash
22 lines
529 B
Bash
#!/bin/sh
|
|
|
|
if [ -z $1 ]; then
|
|
echo Usage: download-dic.sh YYYYMMDD
|
|
exit 1;
|
|
fi
|
|
|
|
dest=skkdic-$1
|
|
rm -r $dest
|
|
# wget -c -r -np -k -L -p http://openlab.ring.gr.jp/skk/skk/dic/
|
|
mkdir -p $dest
|
|
find openlab.ring.gr.jp/skk/skk/dic -name "SKK-JISYO.*" -exec cp {} $dest \;
|
|
|
|
# remove dictionaries that cannot be packaged
|
|
rm -f $dest/dic/SKK-JISYO.edict
|
|
|
|
mkdir -p $dest/READMEs
|
|
cp openlab.ring.gr.jp/skk/skk/dic/READMEs/committers.txt $dest/READMEs
|
|
cp openlab.ring.gr.jp/skk/skk/dic/ChangeLog* $dest
|
|
|
|
tar cvJf skkdic-$1.tar.xz $dest
|