Resources on writing a Debian/Ubuntu deb package?

2020-05-15 03:08发布

I'm getting started preparing an installation script for a software package onto an Ubuntu server. I would like to write a script as a .deb package that is aware of dependencies that must be installed beforehand (a database, web server, etc.).

Can you recommend any tutorials/resources to help a newbie developer get started writing deb packages?

Update: Canonical has a thorough Packaging Guide which explains the process very well.

3条回答
forever°为你锁心
2楼-- · 2020-05-15 03:53

Earlier question at stackoverflow:
How to build a Debian/Ubuntu package from source?

查看更多
虎瘦雄心在
3楼-- · 2020-05-15 03:59

If you plan to install some software with their dependencies, you don't really need to make a .deb package. A Shell script should work, calling the package manager to resolve dependencies, etc.

The default Shell on Ubuntu is Bash. If you don't know how to do it, here is a basic tutorial and an advanced guide.

Hope it helps.

查看更多
欢心
4楼-- · 2020-05-15 04:06

If you are entirely new to building Debian packages, I suggest that you look at the Debian New Maintainers' Guide and use the Debian Developer's Reference as reference. As a starting point, dh_make (from the dh-make package) should give you a good template to work with.

查看更多
登录 后发表回答