summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f29debc27efb73b6525a14c3ee9d6906700e278d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname="nasa-skyviewer-git"
_pkgname="skyviewer"
pkgver=1.0
pkgrel=1
pkgdesc="An OpenGL-based program to display HEALPix-based skymaps stored in FITS format files"
arch=("x86_64")
url='https://github.com/nasa-lambda/skyviewer'
license=('custom')
makedepends=('git' 'qconf' 'cfitsio' 'libqglviewer' 'healpix')
source=("$pkgname::git+https://github.com/nasa-lambda/skyviewer.git")
sha256sums=('SKIP')


build() {
    cd "$srcdir/${pkgname}"
    qmake
    make
}

package() {
    install -Dm755 "${srcdir}/${pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
}