通过 .deb 将静态/动态库分发到 Linux
我创建了一个要分发的静态和动态库。我应该如何制作 .deb 文件,以便将标头放入 /usr/include/ 中,将库放入 /usr/lib/ 等中。
I have created a static and dynamic library that I want to distribute. How should I make my .deb file so the headers are put in /usr/include/, the libraries in /usr/lib/, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 deb 包的两个很好的资源:
http://www.debian.org/doc/maint-指南/
http://www.netfort.gr.jp/~dancer/column/libpkg-guide/libpkg-guide.html
我通常会获取现有包的源代码(例如 libgif-dev),并在 debian 目录中查找代码重用
Two good resources for creating deb packages:
http://www.debian.org/doc/maint-guide/
http://www.netfort.gr.jp/~dancer/column/libpkg-guide/libpkg-guide.html
I usually get the source for an existing package (e.g. libgif-dev) and look in the debian directory for code to reuse