Skip to content

Dushistov/sdcv

Folders and files

NameName
Last commit message
Last commit date
Apr 18, 2023
Jun 24, 2022
Jul 4, 2020
Aug 14, 2020
Aug 15, 2024
Jun 24, 2022
Jun 24, 2022
Jun 2, 2016
Aug 14, 2007
Apr 18, 2023
Jul 26, 2017
Apr 18, 2023
Sep 7, 2022
Jul 6, 2013

Repository files navigation

https://github.com/Dushistov/sdcv/workflows/CI/badge.svg https://img.shields.io/badge/license-GPL%202-brightgreen.svg

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