From bcd0c2591ada00a297db63eefd1a172b2045ac0c Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 5 Sep 2021 18:59:20 -0500 Subject: [PATCH] remove hamlib4.2 --- patch/hamlib4.2 | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 patch/hamlib4.2 diff --git a/patch/hamlib4.2 b/patch/hamlib4.2 deleted file mode 100644 index e5a9839..0000000 --- a/patch/hamlib4.2 +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -#This script will install hamlib 4.2 until -#hamlib 4.3 can be fixed. See this issue -#https://github.com/km4ack/pi-build/issues/296 -#20210901 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-20210901 - -PATCHFILE=$HOME/.config/patch -touch $PATCHFILE -############################### -#Patch script commands go here# -############################### -clear;echo;echo -echo "This is a test 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