mirror of
https://github.com/Dushistov/sdcv.git
synced 2025-12-15 09:21:55 +00:00
5887505185b9129a2de6c4b36f1dbac5fe4e6358
- Use 'const gchar*' for result of g_utf8_next_char() to satisfy GCC 14's stricter const rules - Remove incorrect g_free() on non-allocated pointer from g_utf8_next_char() - Replace deprecated g_pattern_match_string() with g_pattern_spec_match_string()
sdcv
sdcv is a simple, cross-platform, text-based utility for working with dictionaries in StarDict format.
How to compile and install
mkdir /tmp/build-sdcv
cd /tmp/build-sdcv
cmake path/to/source/code/of/sdcv
make
if you enable nls then you should also type
make lang
to install type
make install
you can use "DESTDIR" variable to change installation path
Documentation
See sdcv man page for usage description.
Bugs
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.
Notes to developer
make source code release
make package_source
update translation
cd 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
Description
Languages
C++
78.1%
CMake
16.8%
Shell
5.1%