pull/208/head
KM4ACK 2021-09-09 13:25:09 -05:00
rodzic 6b7104ea5e
commit ea1d86c1be
1 zmienionych plików z 35 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,35 @@
#!/bin/bash
#This patch is for installing hamlib 4.2.
#20210909 KM4ACK
#Give this patch a unique name. A good idea is
#to give it the application name that is being
#patched followed by the date. ie FLDIDI20210805
PATCHNAME=hamlib4.2-20210909
PATCHFILE=$HOME/.config/patch
touch $PATCHFILE
###############################
#Patch script commands go here#
###############################
clear;echo;echo
echo "applying hamlib 4.2 patch"
cd $HOME/Downloads
wget https://github.com/Hamlib/Hamlib/releases/download/4.2/hamlib-4.2.tar.gz
tar -xzf hamlib-4.2.tar.gz
rm hamlib-4.2.tar.gz
cd hamlib-4.2
./configure
make
sudo make install
sudo ldconfig
#############################################
#write patch name to a file so we can #
#look and see if it has been applied before.#
#This is checked by the patch-menu script #
#before running the patch #
#############################################
echo "$PATCHNAME" >> $PATCHFILE