I am creating a debian package for a library and would like to install binary samples.
I was thinking to put them under /usr/share/libname
, but lintian complains (arch-dependent-file-in-usr-share). According FHS this correct, but where can put those files?
相关问题
- Can't compile Artifactory 7.10.2
- How to use the R survey package to analyze multipl
- gwt> importing a sample project
- Storing a wav file in an array
- custom grouped dplyr function (sample_n)
相关文章
- How to decompile iOS apps?
- Problem in Ruby Shoes packaging?
- How can I package my python application with exter
- Install multiple .service files with dh_systemd pa
- How to add PyPi dependencies to DEB package
- SAPUI5 / OpenUI5: Packaging
- Random Sample with multiple probabilities in R [du
- Package PyGObject Python 3 program with pynsist?
It's actually not correct according to the FHS;
/usr/share
is quite explicitly for "architecture-independent data"./usr/lib
is the arch-dependent equivalent, and that's probably what you want (/usr/lib/libname
).See http://www.pathname.com/fhs/pub/fhs-2.3.html#USRLIBLIBRARIESFORPROGRAMMINGANDPA for details.