I am a beginner about compiling from source, so I need your help!
As I need to execute gdcmdump on CentOS 7, I am trying to install gdcm.
First I tried to
git clone --branch release git://git.code.sf.net/p/gdcm/gdcm
but it failed. So I cloned the release by
git clone https://git.code.sf.net/p/gdcm/gdcm gdcm-gdcm
and did
mkdir gdcmbin
cd gdcmbin
cmake ../gdcm
make
make install
without any errors.
But somehow I cannot execute gdcmdump. ("command not found" shown)
I also tried another option (I'm not sure it is actually right):
I downloaded GDCM-3.0.5-Linux-x86_64.tar.gz from https://github.com/malaterre/GDCM/releases/tag/v3.0.5 and unzipped it.
I found "bin", "include", "lib", "share" directories in it. But I have no idea how to handle these...
Any comments are appreciated!