|
本帖最后由 jasonmun 于 31-10-2017 09:14 AM 编辑
---【DEB 源码构造】---
abc 文件夹
├── DEBIAN
│ ├── conffiles (设置文件列表)
│ ├── control (包信息)
│ └── md5sums (md5 文件列表)
└── etc + usr
---【从源码生成 DEB (如上, 需要准备 conffiles, control, md5sums 3个文件)】---
$ mkdir build/
$ dpkg-deb -b abc build/
---【从源码生成 RPM】---
# 将源码整理与打包成 tar.gz, 还要编写 spec 文件
$ fakeroot rpmbuild -ba abc.spec --target x86_64
例子:
网易云音乐 https://github.com/Senorsen/netease-cloud-music-rpm
有道词典 https://github.com/yomun/youdao-dict-rpm
|
|