Package Details: siril 1.2.1-1

Git Clone URL: https://aur.archlinux.org/siril.git (read-only, click to copy)
Package Base: siril
Description: An astronomical image processing software for Linux. (IRIS clone)
Upstream URL: https://www.siril.org/
Licenses: GPL3
Submitter: vinvin
Maintainer: pozar87 (mobarre)
Last Packager: mobarre
Votes: 19
Popularity: 1.42
First Submitted: 2012-10-15 00:40 (UTC)
Last Updated: 2024-02-02 09:27 (UTC)

Dependencies (19)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

vinvin commented on 2023-06-12 11:38 (UTC)

Indeed. This is fixed for the upcoming 1.2. A simple patch can be made for 1.0 from this commit https://gitlab.com/free-astro/siril/-/commit/a593c2b10c9090b5f991718148d61c0fa156fb41

Lubiquity commented on 2023-03-03 17:04 (UTC)

For testing the 1.2.0-beta1 before the near release:

diff --git a/PKGBUILD b/PKGBUILD
index 51c4564..db729ea 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
 # Contributor: Vincent Hourdin <vh|at|free-astro=DOT=vinvin.tf>

 pkgname=siril
-pkgver='1.0.6'
-pkgrel=1
+pkgver='1.2.0'
+pkgrel='1'
 pkgdesc="An astronomical image processing software for Linux. (IRIS clone)"
 arch=('x86_64')
 license=('GPLv3')
-depends=('gtk3' 'json-glib' 'fftw' 'cfitsio' 'gsl' 'libconfig' 'opencv' 'exiv2' 'gnuplot')
-makedepends=('meson' 'cmake' 'ninja')   
+depends=('gtk3' 'json-glib' 'fftw' 'cfitsio' 'gsl' 'libconfig' 'opencv' 'exiv2' 'gnuplot' 'ffms2')
+makedepends=('meson' 'cmake' 'ninja')
 url="https://www.siril.org/"
 optdepends=('libpng: PNG import'
             'libjpeg: JPEG import and export'
@@ -18,17 +18,17 @@ optdepends=('libpng: PNG import'
             'libcurl-gnutls: check for updates'
             'gnuplot: photometry graphs creation')

-source=("https://free-astro.org/download/siril-${pkgver}.tar.bz2")
-sha256sums=('f89604697ffcd43f009f8b4474daafdef220a4f786636545833be1236f38b561')
+source=("https://free-astro.org/download/siril-${pkgver}-beta${pkgrel}.tar.bz2")
+sha256sums=('34b17936a51394685929b9258b2a1d53344aa47a77f48318915cba10e932cf21')

 build() {
-  cd "$srcdir/$pkgname-$pkgver/"
+  cd "$srcdir/$pkgname-$pkgver-beta$pkgrel/"
   meson --prefix /usr --buildtype release _build
   ninja -C _build
 }


 package() {  
-  cd "$srcdir/$pkgname-$pkgver/"
+  cd "$srcdir/$pkgname-$pkgver-beta$pkgrel/"
   meson install -C _build --destdir "$pkgdir"
 }

maboleth commented on 2023-02-02 21:04 (UTC)

For some reason Siril is not assigning its own icon in /usr/share/siril/pixmaps in App menu in Xfce4.

It has to be done manually.

HMich commented on 2022-12-26 11:59 (UTC)

somebody can give me a hand?

siril is not running

siril: symbol lookup error: siril: undefined symbol: _Z12rcd_demosaiciiPKPKfPPfS4_S4_PA2_KjRKSt8functionIFbdEEmb

all dependencies are met, everything up to date

thanks

wbrogdon commented on 2022-10-20 14:00 (UTC) (edited on 2022-10-20 14:01 (UTC) by wbrogdon)

siril 1.0.6 has been released on the siril website

pozar87 commented on 2022-01-01 19:40 (UTC)

Thanks! I've bumped it to 1.0.0-rc2, it seems to work just fine :)

lemust83 commented on 2022-01-01 16:56 (UTC)

Hi I've build a PKGBUILD that source to Siril 1.0.0-rc2 Some differences at package() fonction that use meson according to readme in source package.

pkgname=siril pkgver=1 pkgrel=1 pkgdesc="an astronomical image processing tool" arch=('x86_64') url="https://siril.org/fr/" license=('GPLv3') depends=('gtk3' 'json-glib' 'cfitsio' 'fftw' 'ffmpeg' 'gsl' 'libconfig' 'exiv2' 'opencv' 'gnuplot') makedepends=('meson' 'ninja' 'cmake') conflicts=(siril) replaces=(siril) source=("siril.1-1.tar.xz::https://free-astro.org/download/siril-1.0.0-rc2.tar.bz2") sha512sums=(3b41790d30cc3680eef3d194246a920926b957975d55be74dfaa436109ba005fb288faa7cac84f2b0be9bc091238080fd8cc4f86f2ed47abf6a4fc5f6adebdc4)

build() { cd "$srcdir" meson --buildtype release _build ninja -C _build

}

package() { cd "$srcdir" meson install -C _build --destdir "$pkgdir" }

You can use it if you want or ask me for submit . Cheers lemust83

podiki commented on 2021-05-24 17:05 (UTC)

I think this has been fixed upstream: https://gitlab.com/free-astro/siril/-/issues/680