Package Details: astromatic-scamp 2.10.0-1

Git Clone URL: https://aur.archlinux.org/astromatic-scamp.git (read-only, click to copy)
Package Base: astromatic-scamp
Description: computes astrometric and photometric solutions for any arbitrary sequence of FITS images in a completely automatic way.
Upstream URL: http://www.astromatic.net/software/scamp
Keywords: astronomy
Licenses: GPL
Submitter: ydallilar
Maintainer: andalenavals (ydallilar)
Last Packager: andalenavals
Votes: 6
Popularity: 0.004751
First Submitted: 2017-04-25 12:45 (UTC)
Last Updated: 2023-07-17 20:08 (UTC)

Latest Comments

False_Anomaly commented on 2023-06-18 21:57 (UTC)

I modified the PKGBUILD as such and got it to build (not in a clean chroot!)

# 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"
}

Mr.Smith1974 commented on 2023-06-17 12:27 (UTC) (edited on 2023-06-17 12:27 (UTC) by Mr.Smith1974)

package build error:


    In file included from poly.c:31:
    ../../config.h:182:19: fatal error: /usr/include/lapacke.h: No such file or directory
    182 | #define LAPACKE_H "/usr/include/lapacke.h"
    compilation terminated.
    make[3]: *** [Makefile:445: poly.o] Error 1
    make: *** [Makefile:445: all] Error 2
    ==> ERROR: A failure occurred in build().