sdcv is a simple, cross-platform, text-based utility for working with dictionaries in StarDict format.
mkdir /tmp/build-sdcv
cd /tmp/build-sdcv
cmake path/to/source/code/of/sdcv
makeif you enable nls then you should also type
make langmake installyou can use “DESTDIR” variable to change installation path
See sdcv man page for usage description.
To report bugs use https://github.com/Dushistov/sdcv/issues , if it is not possible you can report it via email to dushistov at mail dot ru. Be sure to include the word “sdcv” somewhere in the “Subject:” field.
make package_sourcecd po
xgettext -k_ ../src/*.cpp -o new.pot
msgmerge -U sdcv.pot new.pot
rm new.pot
for i in `ls *.po`; do msgmerge -U $i sdcv.pot; done