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?
602 Views Asked by Dennis Guse At
1
There are 1 best solutions below
Related Questions in PACKAGING
- Include extra dependency in pyproject.toml in addition to requirements.txt
- Packaging a desktop application
- TestNG test does not start test if packaging tag in pom.xml is 'pom'<packaging>pom</packaging>
- How can I test if a JS library is packaged correctly (in different environments)?
- Do wheels for a target have to be constructed on a machine with that architecture?
- Packaging with pyinstaller when there are custom input loaders
- Building package for noarch with Maturin for Python >= 3.9
- Electron.js : Sound file does not execute on notification alert after packaging
- Modifying my MSIX app installer file for custom update settings
- How do I package with fyne for macOS? -clang argument unused error
- Install a subpackage with a .toml with a package with .toml
- how node js project to make to production
- Package tsx library into executable
- how to install a namespace package with hatch?
- Get rid of icon blue background in Windows App Installer
Related Questions in SAMPLE
- Take a sample of the MNIST dataset
- unexpected sample behavior
- Group dataframe and sample n rows with equal probability between groups
- how can i sample equal number of clusters with probability proportional to size with replacement (ppswr) from a very large number of stratas?
- Drawing a random sample from a very large dataset
- Sampling from a Normal distribution with sparse covariance matrix
- In R in prefiltering in deseq2 analysis which should i use: rowSums(counts(dds))>=patients or patients/2?
- How to randomly select the content of some cells into a data frame?
- When I use if condition, it fails to mark sample even with marksample touse
- Starting Learning node.js - Their Simple Server Sample Gives Syntax Errors
- How to add samples in Asset Store?
- spatSample() choosing NA cells even when na.rm = TRUE
- Train model with only augmented samples
- How to sample for each id on Teradata
- Generating Samples from Customized Distribution - Stuck with Range Limitation
Related Questions in DEB
- DEB how do I save the configuration files of packages that are deleted during the installation of my package?
- How to uninstall a package using python-apt and also remove dependencies?
- Read information from inside DEB package in preinst
- MPR makedeb/mist is not working for the python3-krfzf-py-git 0.0.4.r1.e403493-2 package: unrecognized argument: --prefix=/usr
- Sonatype Nexus Private Repository unable to prompt for username and password in runtime while pulling the package using cli
- Create .debs using Makefile in linux
- How can I sign a Debian package created from rust project?
- Building a .deb-file for Raspberry Pi
- App icon from deb package not showing on Gnome
- SSL verification problem when uploading a deb package using dput
- How to add custom metadata using fpm for rpm/deb pacakges
- cpack -B build/ fails in parent directory
- Create changelogs for reprepro debian repository
- Make deb-package which updates another deb-package
- MD5 Error while installing package libc6:i386 on Crostini
Related Questions in FHS
- (MacOS) Is there a standard location for user-specific LaunchDaemons to write a .pid file to?
- How to handle inconsistent availability of packages in standard search locations in C build system files or build system generator files?
- Where to place app config/logs in container
- Filesystem Hierarchy Standard: Where should my package install files in Linux?
- Getting the correct /usr/libXX folder for the current binary architecture
- When should I install a library to lib/ , and when to, say, lib/x86_64-linux-gnu?
- What is the appropriate directory to store scripts and their output?
- Convincing CPack to properly install shared read-only data under /usr/share
- saving jupyter notebook/python files on ubuntu 18.04.1 LTS
- Make an executable Guile program with auto-tools?
- Platform-independent directory
- Is there a Linux standard structure for "install" directories?
- What does 'local' mean?
- Will Docker kill FHS?
- XDG Basedir directories for Windows
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)
Popular # Hahtags
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?
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.