From a26612a36506761713957b0cdf82156d4efc530a Mon Sep 17 00:00:00 2001
From: Daniele Forsi <iu5hkx@gmail.com>
Date: Sat, 1 Apr 2023 14:24:34 +0200
Subject: [PATCH] Building with GPS support on Linux needs libgps-dev

Fixes:
-- Checking for module 'libgps'
--   No package 'libgps' found
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 82c129b0..5801e0f5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -100,7 +100,7 @@ jobs:
           # this is not perfect but enought for now
           if [ "$RUNNER_OS" == "Linux" ]; then
             sudo apt-get update
-            sudo apt-get install libasound2-dev libudev-dev libhamlib-dev gpsd
+            sudo apt-get install libasound2-dev libudev-dev libhamlib-dev libgps-dev
           elif [ "$RUNNER_OS" == "macOS" ]; then
             # just to simplify I use homebrew but
             # we can use macports (latest direwolf is already available as port)