i have extracted the folder and tried ./configure && make && make install.
i have downloaded keepassx-2.0.3.tar.gz
how can i install ?
thanks.
i have extracted the folder and tried ./configure && make && make install.
i have downloaded keepassx-2.0.3.tar.gz
how can i install ?
thanks.
Open the file named INSTALL.
mkdir build
cd build
cmake [CMAKE PARAMETERS] ..
make [-jX]
-DCMAKE_INSTALL_PREFIX=/usr/local
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_BUILD_TYPE=<RelWithDebInfo/Debug/Release>
-DWITH_GUI_TESTS=ON
make install [DESTDIR=X]
Create a bundle on Mac:
make package
make test [CTEST_OUTPUT_ON_FAILURE=1] [ARGS+=-jX] [ARGS+=ā-E testguiā]
https://www.keepassx.org/dev/projects/keepassx/wiki/Install_instructions
Thanks, i dont under this.
[username@device-name keepassx-2.0.3]$ su -
Password:
[root@device-name ~]# mkdir build
[root@device-name ~]# cd build
[root@device-name build]# cmake [CMAKE PARAMETERS]
bash: cmake: command not found...
Similar command is: 'make'
[root@device-name build]# ^C
[root@device-name build]#
please help me out
you are a life saver sir,
thank you very much
Safety suggestion: Do not build as root. Use regular account. Only the āmake installā to /usr/local requires elevated privileges. Preferably install to location, where you can write to as regular user.