blob: e2bfc24ae5bd137a09f32f4d6b2f56be09917dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Vincent Hourdin <aur at vinvin dot tf>
pkgname=goqat
pkgver=3.0.1
pkgrel=0
pkgdesc="Operates any CCD camera from Quantum Scientific Imaging (QSI) and autoguides telescopes."
url="http://canburytech.net/GoQat/"
arch=('i686' 'x86_64')
license=('GPL3')
depends=('goocanvas2' 'libindi' 'qsiapi>7.2')
optdepends=('ds9: displays CCD images (FITS format)'
'xpa: communication mechanism used to bind to DS9'
'libparapin: parallel port support'
'grace: plotting support'
'sextractor: analyse GoQats video recordings'
'libraw1394: support of firewire cameras or coverters from The Imaging Source'
'v4l-utils: use v4l devices (webcams) for autoguiding')
source=("https://canburytech.net/GoQat/download/${pkgname}-${pkgver}.tar.gz")
sha1sums=('c571fd451497c016932f0105e6d901bdd3df157e')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
LIBS='-lnova -lftdi1' ./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}
|