Package Details: libindi-qhy 2.0.1-1

Git Clone URL: https://aur.archlinux.org/libindi-qhy.git (read-only, click to copy)
Package Base: libindi-qhy
Description: 3rd party drivers for INDI: QHY
Upstream URL: http://www.indilib.org/index.php?title=Main_Page
Licenses: GPL2
Submitter: mobarre
Maintainer: mobarre
Last Packager: mobarre
Votes: 3
Popularity: 0.102212
First Submitted: 2021-02-16 10:37 (UTC)
Last Updated: 2023-04-24 11:12 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

k-laus commented on 2024-01-01 16:52 (UTC)

Please find below a patch that contains several improvements/updates:

  • update to indi-3rdparty 2.0.5

  • add architecture aarch64

  • to support one common SRCDEST folder for makepkg, make source package file unique (see https://wiki.archlinux.org/title/PKGBUILD#Sources)

  • sed change as mentioned by wgauvin for CMakeLists.txt

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,23 +2,23 @@
 # Contributor: Sebastian Baberowski <sebastian@baberowski.com>

 pkgname=libindi-qhy
-pkgver=2.0.1
+pkgver=2.0.5
 pkgrel=1
 pkgdesc="3rd party drivers for INDI: QHY"
 url="http://www.indilib.org/index.php?title=Main_Page"
 license=(GPL2)
-arch=(i686 x86_64)
-depends=(libindi=${pkgver} libqhy=${pkgver})
+arch=(aarch64 i686 x86_64)
+depends=(libindi-git libqhy=${pkgver})
 makedepends=(cmake)
-source=("https://github.com/indilib/indi-3rdparty/archive/v${pkgver}.tar.gz")
-sha256sums=("be98a84ab6166321fe5aa74fca132cd866ae4e6910ef3b97e3502a44c59d277d")
+source=("indi-3rdparty-${pkgver}.tar.gz::https://github.com/indilib/indi-3rdparty/archive/v${pkgver}.tar.gz")
+sha256sums=("17f5a0536f2ee6bfbcbdcdde9a44c2e59c2156637004193f650bdd2dda123291")

 prepare() {
   mkdir -p build
   cd  indi-3rdparty-${pkgver}

   #set all to off by default
-  sed -i -e '/option(WITH_.*On/s/ On/ Off/' CMakeLists.txt
+  sed -i -e '/option(WITH_.*On)$/s/ On)$/ Off)/' CMakeLists.txt
 }

 build() {

italic commented on 2022-10-07 06:01 (UTC)

Indi 1.9.8 was just released last week. Could we get a new release here to keep up? I'm getting build errors against 1.9.8 with current 1.9.6 package. Thanks

italic commented on 2022-08-08 03:13 (UTC)

Could we fix this for the upcoming 1.9.7 release? The only other package that needs this update is libindi-gpsnmea.

blemasle commented on 2022-02-06 17:53 (UTC)

Could you please fix the PKGBUILD with the patch suggested by wgauvin ?

Despite quick updates when new libindi package is released (thanks for that by the way), the package still needs a one liner fix to be installed properly.

blemasle commented on 2021-11-16 19:24 (UTC)

Despite the recent update, the package still needs the modification pointed out by wgauvin to avoid messing with the /lib folder.

wgauvin commented on 2021-09-18 07:55 (UTC)

Note, that due to PowerOne being added the sed command in the PKGBUILD needs to be changed.

sed -i -e '/option(WITH_.*On/s/ On)/ Off)/' CMakeLists.txt

(note the ) after the On and Off