diff options
Diffstat (limited to 'sci-astronomy/siril/siril-0.99.10.1.ebuild')
-rw-r--r-- | sci-astronomy/siril/siril-0.99.10.1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sci-astronomy/siril/siril-0.99.10.1.ebuild b/sci-astronomy/siril/siril-0.99.10.1.ebuild new file mode 100644 index 0000000..c7957a6 --- /dev/null +++ b/sci-astronomy/siril/siril-0.99.10.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson xdg-utils git-r3 + +DESCRIPTION="An astronomical image processing tool" +HOMEPAGE="https://www.siril.org/" +EGIT_REPO_URI="https://gitlab.com/free-astro/${PN}.git" +EGIT_COMMIT="${PV}" +EGIT_SUBMODULES=( '*' ) + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="curl ffmpeg gnuplot heif jpeg png raw tiff wcs" + +RDEPEND=" + curl? ( net-misc/curl ) + ffmpeg? ( media-video/ffmpeg ) + gnuplot? ( sci-visualization/gnuplot ) + heif? ( media-libs/libheif ) + jpeg? ( virtual/jpeg ) + png? ( media-libs/libpng ) + raw? ( media-libs/libraw ) + tiff? ( media-libs/tiff ) + wcs? ( sci-astronomy/wcslib ) +" +DEPEND=" + ${RDEPEND} + x11-libs/gtk+:3= + sci-libs/cfitsio + sci-libs/fftw:3.0= + sci-libs/gsl + dev-libs/libconfig + dev-libs/json-glib + media-libs/opencv + media-gfx/exiv2 +" + +DOCS=( README.md NEWS ChangeLog ) + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} |