从脚本或二进制文件创建 .deb 包

从脚本或二进制文件创建 .deb 包

我搜索了一种简单的方法来为没有源代码可编译的东西(配置、shellscript、专有软件)创建 .deb 包。这是一个很大的问题,因为大多数软件包教程都假设您有一个要编译的源 tarball。然后我发现简短教程(德语)。

之后,我写了一个小脚本来创建一个简单的存储库。像这样:

rm /export/my-repository/repository/*
cd /home/tdeutsch/deb-pkg
for i in $(ls | grep my); do dpkg -b ./$i /export/my-repository/repository/$i.deb; done
cd /export/avanon-repository/repository
gpg --armor --export "My Package Signing Key" > PublicKey
apt-ftparchive packages ./ | gzip > Packages.gz
apt-ftparchive packages ./ > Packages
apt-ftparchive release ./ > /tmp/Release.tmp; mv /tmp/Release.tmp Release
gpg --output Release.gpg -ba Release

我将密钥添加到 apt 密钥环并包含如下源:

deb http://my.default.com/my-repository/ ./

看起来 repo 本身运行良好(我遇到了一些问题,为了修复它们,我需要添加两次软件包,并使用临时文件替代 Release 文件)。我还将一些下载的 .deb 放入 repo,看起来它们也可以正常工作。但我自己创建的软件包却不行……当我这样做时sudo apt-get update,它们会导致如下错误:

E: Problem parsing dependency Depends
E: Error occurred while processing my-printerconf (NewVersion2)
E: Problem with MergeList /var/lib/apt/lists/my.default.com_my-repository_._Packages
E: The package lists or status file could not be parsed or opened.

有人知道我做错了什么吗?

更新2012-03-06:对于正在寻找创建 DEB 的简单方法的人,这里有一个提示:纤维增强塑料

答案1

您链接的教程使用低级方法来构建包。这种方法通常不推荐,如果不小心使用,可能会导致各种问题。

一旦理解了打包基础知识,为脚本创建 .deb 就非常简单了。简而言之:

# Configure your paths and filenames
SOURCEBINPATH=~
SOURCEBIN=myscript.sh
DEBFOLDER=~/somescripts
DEBVERSION=0.1

DEBFOLDERNAME=$DEBFOLDER-$DEBVERSION

# Create your scripts source dir
mkdir $DEBFOLDERNAME

# Copy your script to the source dir
cp $SOURCEBINPATH/$SOURCEBIN $DEBFOLDERNAME 
cd $DEBFOLDERNAME

# Create the packaging skeleton (debian/*)
dh_make -s --indep --createorig 

# Remove make calls
grep -v makefile debian/rules > debian/rules.new 
mv debian/rules.new debian/rules 

# debian/install must contain the list of scripts to install 
# as well as the target directory
echo $SOURCEBIN usr/bin > debian/install 

# Remove the example files
rm debian/*.ex

# Build the package.
# You  will get a lot of warnings and ../somescripts_0.1-1_i386.deb
debuild

添加更多脚本需要将它们复制到目录并添加到 debian/install 文件中 - 然后只需重新运行 debuild。您还应该根据需要检查和更新 debian/* 文件。

您应该阅读以下手册页:dh_makedh_install, 和debuild

相关内容