Package Details: libindi-asi 2.1.1-1

Git Clone URL: https://aur.archlinux.org/libindi-asi.git (read-only, click to copy)
Package Base: libindi-asi
Description: 3rd party drivers for INDI, support for ZWO devices: ASI cameras, EFW filter wheel, ASI ST4 port and ASI focuser
Upstream URL: http://www.indilib.org/index.php?title=Main_Page
Licenses: LGPL2.1
Submitter: sebo_b
Maintainer: lehel_x (mobarre)
Last Packager: lehel_x
Votes: 5
Popularity: 0.000014
First Submitted: 2019-05-27 22:04 (UTC)
Last Updated: 2024-12-06 22:51 (UTC)

Latest Comments

« First ‹ Previous 1 2

yorickpeterse commented on 2020-05-08 20:11 (UTC) (edited on 2020-05-08 21:25 (UTC) by yorickpeterse)

I got the ASI drivers to build using the following PKGBUILD:

# Maintainer: Sebastian Baberowski <sebastian@baberowski.com>

pkgname=libindi-asi
pkgver=1.8.5
pkgrel=1
pkgdesc="3rd party drivers for INDI, support for ZWO devices: ASI cameras, EFW filter wheel, ASI ST4 port and ASI focuser"
url="http://www.indilib.org/index.php?title=Main_Page"
license=(LGPL2.1)
arch=(i686 x86_64)
depends=(libindi)
makedepends=(cmake)
source=("https://github.com/indilib/indi-3rdparty/archive/v${pkgver}.tar.gz")
sha256sums=('acbddca69c25b2c46ebc0982e8dbbf4912a43f6a4b45d46b007deab8805caed8')

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
}

build() {
  cd build
  cmake -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_INSTALL_LIBDIR=/usr/lib \
    -DUDEVRULES_INSTALL_DIR=/usr/lib/udev/rules.d \
    -DWITH_ASICAM=On \
    ../indi-3rdparty-${pkgver}
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}

Unfortunately, this does not appear to build/install the necessary driver executables; not sure yet why that is.

yorickpeterse commented on 2020-05-08 17:38 (UTC)

3rd party drivers have been moved to a separate repository: https://github.com/indilib/indi-3rdparty