17 lines
730 B
Bash
17 lines
730 B
Bash
|
# On récupère la dernière version de x11-emoji-picker
|
||
|
wget -q https://api.github.com/repos/GaZaTu/x11-emoji-picker/releases/latest
|
||
|
echo "Retrieve the last package..."
|
||
|
grep 'browser_download_url": ".*.deb"' latest | awk '{ print substr ($0, 32 ) }' | awk '{ print substr( $0, 1, length($0)-1 ) }' > url
|
||
|
rm latest
|
||
|
# On télécharge le paquet
|
||
|
wget -q --show-progress -i url -O x11-emoji-picker.deb
|
||
|
rm url
|
||
|
# On installe la dépendance
|
||
|
wget -q --show-progress http://ftp.br.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u4_amd64.deb
|
||
|
sudo apt install ./libicu57_57.1-6+deb9u4_amd64.deb -y
|
||
|
rm libicu57_57.1-6+deb9u4_amd64.deb
|
||
|
# On l'installe
|
||
|
sudo apt install ./x11-emoji-picker.deb -y
|
||
|
# On le supprime
|
||
|
rm x11-emoji-picker.deb
|