blob: 17566a8a8e791b3747c14d188e8706f75606e64d (
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
|
pkgname=astap
pkgver=2023.09.11
pkgrel=1
pkgdesc="Astrometric (plate) solver, stacking of images, photometry and FITS viewer (build from source). Qt5 version."
arch=('x86_64')
url="http://www.hnsky.org/astap.htm"
license=('GPL')
makedepends=('lazarus')
depends=('qt5-base' 'qt5-x11extras' 'qt5pas')
source=("https://www.hnsky.org/astap_source.zip")
sha256sums=('22d08ce5063c82a04b7168e2682727577e1f8271809a42e993ca4f71d1effc7e')
optdepends=('hyperleda-galaxy-db-astap: 25MB database of 1.3m galaxies and 171k other non-star objects'
'w08-star-db-astap: 250KB database of stars up to magnitude 8, reliable above 20° FOV'
'd05-star-db-astap: 100MB database of 500 stars per square degree, reliable with 0.6-10° FOV'
'd20-star-db-astap: 400MB database of 2000 stars per square degree, reliable with 0.3-10° FOV'
'd50-star-db-astap: 900MB database of 5000 stars per square degree, reliable with 0.2-10° FOV')
conflicts=('astap-bin' 'astap-bin-qt5' 'astap-cli')
build() {
cd $srcdir/
lazbuild -B --lazarusdir=/usr/lib/lazarus astap_linux_qt5.lpi
}
package() {
mkdir -p "${pkgdir}/opt/${pkgname}"
cp -r "${srcdir}/${pkgname}" "${pkgdir}/opt/${pkgname}/${pkgname}"
}
|