我是靠谱客的博主 矮小夏天,最近开发中收集的这篇文章主要介绍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("%sn","Hello");
return 0;
}

Makefile 文件内容

# cat Makefile
hello:hello.o
gcc -o hello hello.o
hello.o:hello.c
gcc -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.git
Package: 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线上编译的全部内容,希望文章能够帮你解决launchpad(二)ubuntu使用launchpad.net线上编译所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部