本文主要是介绍launchpad(二)ubuntu使用launchpad.net线上编译,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.安装环境
sudo apt update
sudo apt install dh-make
sudo apt install devscripts
sudo apt install build-essential
2.创建一个二级目录
mkdir ~/test/hello-1.0 -p
cd ~/test/hello-1.0
3.创建文件
hello.c 文件内容
//cat hello.c
#include <stdio.h>int main(void)
{printf("%s\n","Hello");return 0;
}
Makefile 文件内容
# cat Makefile
hello:hello.ogcc -o hello hello.o
hello.o:hello.cgcc -o hello.o -c hello.c
.PHONY:rebuild clean
rebuild:clean hello
clean:rm -f hello hello.o
4.⽣成debian⽬录
dh_make --createorig -e liruijian@kylinos.cn
5.在debian目录下创建install文件
vi debian/install
install 文件内容
hello /bin
6.编译出changelog
debuild -S -sa -Inothing
7.推到launchpad.net编译
dput ppa:liruijian/hello ../hello_1.0-1_source.changes
会推送失败,处理如下:
修改debian/control文件为:
Source: hello
Section: libs
Priority: optional
Maintainer: jian <liruijian@kylinos.cn>
Build-Depends: debhelper (>=9)
Standards-Version: 3.9.6
Homepage: <insert the upstream URL, if relevant>
#Vcs-Git: git://anonscm.debian.org/collab-maint/hello.git
#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/hello.gitPackage: hello
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: <insert up to 60 chars description><insert long description, indented with spaces>
jian@ubuntu:~/share/src/hello-1.0$
修改debian/changelog文件为:
hello (1.0-1) xenial; urgency=medium* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>-- liruijian <liruijian@kylinos.cn> Thu, 13 May 2021 16:32:31 +0800
就可以上传成功并且编译通过。
这篇关于launchpad(二)ubuntu使用launchpad.net线上编译的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!