i need install npm install keytar on termux
But this library uses libsecret-1-dev
Install on Debian/Ubuntu
sudo apt-get install libsecret-1-dev
But i don't have sudo on termux and i can't install this library
How can i use this ?
Problem description
Steps to reproduce
Expected behavior
Additional information
Termux isn't ubuntu or debian so you don't need sudo.
You need to compile libsecret from source for now, until someone compiles the package for our repository
Termux isn't ubuntu or debian so you don't need sudo.
You need to compile libsecret from source for now, until someone compiles the package for our repository
How can i do this ? Is there any documentation ?
Requires gobject-introspection which is not available as Termux package.
Meson is required too, but it can be just downloaded from https://github.com/mesonbuild/meson/releases/download/0.54.3/meson-0.54.3.tar.gz and added to PATH.
If you are trying to install code-server which requires keytar as npm dependency, then use
yarn global add code-server
That will eliminate requirement of libsecret.

Build-time dependency of libsecret gobject-introspection isn't going to be added, at least for now. Anyone who know how to properly cross-compile it is welcome to submit pull request.
Thank yours very mach/ Yes i want install server-code and without auth it is work.
But for the system to be complete, this library is needed.
Most helpful comment
If you are trying to install code-server which requires keytar as npm dependency, then use
That will eliminate requirement of
libsecret.Build-time dependency of libsecret
gobject-introspectionisn't going to be added, at least for now. Anyone who know how to properly cross-compile it is welcome to submit pull request.