Você pode editar facilmente o arquivo de controle para contornar isso. Abra gedit
ou nano
e digite ou cole:
#!/bin/bash
if [[ -z "$1" ]]; then
echo "Syntax: $0 debfile"
exit 1
fi
DEBFILE="$1"
TMPDIR='mktemp -d /tmp/deb.XXXXXXXXXX' || exit 1
OUTPUT='basename "$DEBFILE" .deb'.modfied.deb
if [[ -e "$OUTPUT" ]]; then
echo "$OUTPUT exists."
rm -r "$TMPDIR"
exit 1
fi
dpkg-deb -x "$DEBFILE" "$TMPDIR"
dpkg-deb --control "$DEBFILE" "$TMPDIR"/DEBIAN
if [[ ! -e "$TMPDIR"/DEBIAN/control ]]; then
echo DEBIAN/control not found.
rm -r "$TMPDIR"
exit 1
fi
CONTROL="$TMPDIR"/DEBIAN/control
MOD='stat -c "%y" "$CONTROL"'
vi "$CONTROL"
if [[ "$MOD" == 'stat -c "%y" "$CONTROL"' ]]; then
echo Not modfied.
else
echo Building new deb...
dpkg -b "$TMPDIR" "$OUTPUT"
fi
rm -r "$TMPDIR"
Igual ao arquivo como debedit.sh
e torne-o executável com chmod +x debedit.sh
.
Em seguida, execute debedit.sh nxplugin_3.5.0-6_i386.deb
para o arquivo e edite a linha correta (ou adicione-a). Salve e execute sudo dpkg -i nxplugin_3.5.0-6_i386.deb.modified.deb
(o nome pode diferir um pouco) e divirta-se!
Fonte: link