以前のバージョンの残りの部分をクリーンアップするために、Debianパッケージに "postinst"スクリプトを追加しようとしています。
私はdebian /ディレクトリに "postinst"ファイルを作成しましたが、.debファイルには存在しません。
権限:
-rwxrwxr-x 1 kp kp 354 Sep 16 20:00 postinst*
コンテンツ:
#!/bin/sh
set -e
set -x
...
答え1
postinst
このファイル(およびその他の類似ファイル)をパッケージ準備ディレクトリにコピーする必要があります。dh_make
実行可能ファイルを使用する場合は、すべての操作を手動で実行する場合はdh_installdeb
もちろん含まれますdh install
。ファイルをdebian/tmp/DEBIAN/
準備debian/tmp
ディレクトリにコピーします。