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?
Conform with File Hierarchy Standard on Linux: where to put binary examples for a library?
601 views Asked by Dennis Guse At
1
There are 1 answers
Related Questions in PACKAGING
- How to create my own android library and host it
- Packing an entire Python application as a PEX file
- Can not build war from grails project
- Packaging Unreal Build Configurations
- How to package a Python module
- Copy directory on destination machine during .deb installation in Ubuntu 14.04, 64 bit
- I want to create a .deb package for our software
- Debian package naming policy for soname
- What is the best practice for packaging Lua script files to be called from C. Using CMake
- How can i run my exe Java application on both 32-bit and 64-bit systems?
Related Questions in SAMPLE
- Qt QAudioInput how to send a fixed number of samples
- Selecting samples for supervised machine learning
- how to generate a vector which satisfy some conditions?
- Spark's takeSample() results in two stages
- SAS how to get random selection by group randomly split into multiple groups
- "sample" and "rbinom" functions in R
- Imbalanced data and sample size for large multi-class NLP classification
- Taking Sample in SQL Query
- taking a list as a sample out of .r file
- Random Distribution to fit an Average Python
Related Questions in DEB
- deb package creation using fpm with build dependencies
- creates a Debian binary package, a .deb file from cx_Freeze-d Python executables
- Debian: deb command not found. How can i fix it?
- Creating deb or rpm with setuptools – data_files
- which lib belongs to deb
- Copy directory on destination machine during .deb installation in Ubuntu 14.04, 64 bit
- Installing openTSDB on Ubuntu15.04
- I want to create a .deb package for our software
- JavaFX - Caused by: java.lang.UnsupportedOperationException: Unable to open DISPLAY?
- Closing the terminal should kill the associated process with the terminal
Related Questions in FHS
- Getting the correct /usr/libXX folder for the current binary architecture
- Platform-independent directory
- Convention for storing bare Git repositories in home directory?
- When should I install a library to lib/ , and when to, say, lib/x86_64-linux-gnu?
- Where to place app config/logs in container
- In Debian, where in the filesystem would a daemon provide dynamic measurement results?
- Why does FHS have a usr directory
- Conform with File Hierarchy Standard on Linux: where to put binary examples for a library?
- Will Docker kill FHS?
- Linux: Installation directory of application installed only for current user
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It's actually not correct according to the FHS;
/usr/shareis quite explicitly for "architecture-independent data"./usr/libis 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.