blob: 4ff9d786493643fd6ebafc810cd05b71eeb39f76 (
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
31
32
33
34
35
36
|
# Maintainer: Yigit Dallilar <yigit.dallilar@gmail.com>
pkgname=astromatic-scamp
_pkgname=scamp
pkgver=2.10.0
pkgrel=1
pkgdesc="computes astrometric and photometric solutions for any arbitrary sequence of FITS images in a completely automatic way."
url="http://www.astromatic.net/software/scamp"
arch=('x86_64')
license=('GPL')
depends=('astromatic-sextractor' 'cdsclient' 'shapelib')
makedepends=()
conflicts=()
replaces=()
backup=()
source=(https://github.com/astromatic/scamp/archive/v${pkgver}.tar.gz)
sha1sums=('59a8f9d8780ce07bcfef3d80c718141f0884d9dd')
build() {
_COPTS="--enable-openblas --with-openblas-incdir=/usr/include/openblas"
cd $srcdir/${_pkgname}-${pkgver}
./autogen.sh
./configure --prefix=/usr $_COPTS
make
}
package() {
cd $srcdir/${_pkgname}-${pkgver}
make DESTDIR="$pkgdir" install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|