Tiny Core Base > CorePlus
Can someone ELI5 me how to create tcz extensions?
john110:
--- Quote from: Juanito on July 19, 2020, 06:29:42 AM ---Using: http://tinycorelinux.net/11.x/x86_64/tcz/src/keepassx/
You need to do this first:
--- Code: ---$ tce-load -i compiletc cmake libgcrypt-dev qt-5.x-dev zlib_base-dev
$ cd keepassx*
$ mkdir build
$ cd build
$ cmake -DCMAKE_C_FLAGS_RELEASE="-flto -fuse-linker-plugin -march=i486 -mtune=i686 -Os -pipe" -DCMAKE_CXX_FLAGS_RELEASE="-flto -fuse-linker-plugin -march=i486 -mtune=i686 -Os -pipe -fno-exceptions -fno-rtti" -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=TRUE -DWITH_GUI_TESTS=ON -DWITH_CXX11=ON ../
$ make
--- End code ---
--- End quote ---
--- Quote ---can't cd to keepassx*: No such file or directory
--- End quote ---
Juanito:
--- Code: ---$ wget https://github.com/keepassxreboot/keepassxc/releases/download/2.6.0/keepassxc-2.6.0-src.tar.xz
$ tar xf keepassxc-2.6.0-src.tar.xz
$ cd keepassxc*
--- End code ---
john110:
--- Quote from: Juanito on July 19, 2020, 07:37:39 AM ---
--- Code: ---$ wget https://github.com/keepassxreboot/keepassxc/releases/download/2.6.0/keepassxc-2.6.0-src.tar.xz
$ tar xf keepassxc-2.6.0-src.tar.xz
$ cd keepassxc*
--- End code ---
--- End quote ---
I can't send all terminal logs unfortunately, because I don't know how to copy them (ctrl + c doesn't work and I can't drag and drop them).
I got errors:
--- Quote ----- Configuring incomplete, errors occured!
See also "/home/tc/keepassxc-2.6.0/build/CMakeFiles/CMakeOutput.log
See also "/home/tc/keepassxc-2.6.0/build/CMakeFiles/CMakeError.log
--- End quote ---
Pastebin link to: CMakeOutput.log -> https://pastebin.com/raw/JFFmRFWE
Pastebin link to: CMakeError.log -> https://pastebin.com/raw/MNxzKfWK
Juanito:
From CMakeLists.txt:
--- Code: ---find_package(LibGPGError REQUIRED)
find_package(Gcrypt 1.7.0 REQUIRED)
find_package(Argon2 REQUIRED)
find_package(ZLIB REQUIRED)
find_package(QREncode REQUIRED)
find_package(sodium 1.0.12 REQUIRED)
--- End code ---
..so it seems you'll need argon, qrencode and sodium.
You could also try an older version, which might not need those additional deps.
john110:
--- Quote from: Juanito on July 19, 2020, 08:37:07 AM ---From CMakeLists.txt:
--- Code: ---find_package(LibGPGError REQUIRED)
find_package(Gcrypt 1.7.0 REQUIRED)
find_package(Argon2 REQUIRED)
find_package(ZLIB REQUIRED)
find_package(QREncode REQUIRED)
find_package(sodium 1.0.12 REQUIRED)
--- End code ---
..so it seems you'll need argon, qrencode and sodium.
--- End quote ---
How can I get these, I can't find any of them in the repo...?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version