Replies: 1 comment
-
checking..... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I have 2 suggestions to deb packaging Midori
Add copyright file to:
/usr/share/doc/midori/
Add postinst file to DEBIAN directory:
`#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
update-alternatives --install /usr/bin/midori x-www-browser /usr/bin/midori 40
fi`
and prerm file to DEBIAN dir as well:
`#!/bin/sh
set -e
if [ "$1" = "remove" ]; then
update-alternatives --remove x-www-browser /usr/bin/midori
fi`
Beta Was this translation helpful? Give feedback.
All reactions