- Update to version 1.0.27: + Add Save button to toolbar. + Add calculus example "zooming animation" to show differentiability. + Allow setting editor color scheme in the settings dialog. + Closing window acts exactly like the quit button/menu item. + Current program is marked with larger font instead of bold, since that doesn't work with all themes. + Improve performance of surface plots, and get rid of flicker. + Remove menu icons. + Leave the Stop button on the plot window enabled if a script is running. + Remove dependence on AMTK. + Updated translations. - Drop pkgconfig(amtk-5) BuildRequires: following upstream changes. OBS-URL: https://build.opensuse.org/request/show/927919 OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/genius?expand=0&rev=57
119 lines
3.7 KiB
RPMSpec
119 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package genius
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: genius
|
|
Version: 1.0.27
|
|
Release: 0
|
|
Summary: General purpose calculator and mathematics tool
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Scientific/Math
|
|
URL: http://www.jirka.org/genius.html
|
|
Source: https://download.gnome.org/sources/genius/1.0/%{name}-%{version}.tar.xz
|
|
|
|
BuildRequires: fdupes
|
|
BuildRequires: gnome-doc-utils-devel
|
|
BuildRequires: intltool
|
|
BuildRequires: mpfr-devel >= 2.3.0
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: readline-devel
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.41.1
|
|
BuildRequires: pkgconfig(gobject-2.0)
|
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.21.4
|
|
BuildRequires: pkgconfig(gtksourceview-4) >= 3.99.7
|
|
BuildRequires: pkgconfig(ncurses)
|
|
BuildRequires: pkgconfig(pango) >= 1.22.0
|
|
BuildRequires: pkgconfig(vte-2.91)
|
|
BuildRequires: pkgconfig(x11)
|
|
|
|
%description
|
|
Genius is a general purpose calculator program similar in some aspects
|
|
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
|
|
calculator and as a research or educational tool. The syntax
|
|
mimics how mathematics is usually written.
|
|
|
|
GEL (Genius Extenseion Language) is the name of its extension language.
|
|
Many of the standard genius functions are written in GEL itself.
|
|
|
|
%package -n gnome-genius
|
|
Summary: GNOME interface for Genius, a general purpose calculator
|
|
Group: Productivity/Scientific/Math
|
|
Requires: %{name} = %{version}
|
|
|
|
%description -n gnome-genius
|
|
Genius is a general purpose calculator program similar in some aspects
|
|
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
|
|
calculator and as a research or educational tool. The syntax mimics
|
|
how mathematics is usually written.
|
|
|
|
%package devel
|
|
Summary: Development files for Genius, a general purpose calculator
|
|
Group: Productivity/Scientific/Math
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
Genius is a general purpose calculator program similar in some aspects
|
|
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
|
|
calculator and as a research or educational tool. The syntax
|
|
mimics how mathematics is usually written.
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fstack-protector"
|
|
%configure \
|
|
--libexec=%{_libexecdir}/genius \
|
|
--disable-update-mimedb
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
# We don't want the test plugin:
|
|
rm %{buildroot}%{_libdir}/genius/libtestplugin.*
|
|
rm %{buildroot}%{_datadir}/genius/plugins/test.plugin
|
|
# Not needed anymore on modern desktops:
|
|
rm %{buildroot}%{_datadir}/application-registry/genius.applications
|
|
rm %{buildroot}%{_datadir}/mime-info/genius.*
|
|
%find_lang %{name} %{?no_lang_C}
|
|
%fdupes %{buildroot}%{_datadir}/genius
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc NEWS README
|
|
%{_datadir}/genius
|
|
%{_bindir}/genius
|
|
|
|
%files -n gnome-genius
|
|
%{_bindir}/gnome-genius
|
|
%{_libexecdir}/genius
|
|
%{_datadir}/applications/gnome-genius.desktop
|
|
%{_datadir}/icons/hicolor/
|
|
%{_datadir}/mime/packages/genius.xml
|
|
|
|
%files devel
|
|
%doc AUTHORS ChangeLog TODO
|
|
%{_includedir}/genius
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%changelog
|