Created
August 2, 2024 14:27
-
-
Save KristobalJunta/e4c51b1a2290872a2651ecb7f589f160 to your computer and use it in GitHub Desktop.
Fix Zoom deb package: remove ibus from dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Remove ibus from zoom .deb dependencies | |
# From https://unix.stackexchange.com/a/705250 | |
set -xe | |
# tmp=$(mktemp -d) | |
# cd "${tmp}" | |
# name='zoom.deb' | |
name='zoom_amd64.deb' | |
# wget https://zoom.us/client/latest/zoom_amd64.deb -O "${name}" | |
dpkg -x "${name}" zoom | |
dpkg -e "${name}" zoom/DEBIAN | |
sed -i -E 's/(ibus, |, ibus)//' zoom/DEBIAN/control | |
dpkg -b zoom "${name}" | |
sudo dpkg -i "${name}" | |
rm -rf zoom | |
# rm -rf "${tmp}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment