如何为 Blockify 编写规则文件?

如何为 Blockify 编写规则文件?

没有适用于 Spotify 的 Blockify 广告屏蔽器的 Debian 软件包,我想构建一个。我为其创建了版权、兼容性和所有其他 Debian 软件包文件,但工作规则文件除外。我知道要从其源代码构建和安装 Blockify,只需运行:

sudo pip3 install git+https://github.com/serialoverflow/blockify

但我不知道如何将其转变为规则文件的build:功能。

答案1

当我测试构建包(没有安装它)时,Debian 中记录的新方法运行良好:

#! /usr/bin/make -f

#export DH_VERBOSE = 1
export PYBUILD_NAME = blockify

%:
        dh $@ --with python2,python3 --buildsystem=pybuild

参考: Debian 打包:Python 库风格指南

相关内容