genius/genius.spec

169 lines
5.2 KiB
RPMSpec

#
# spec file for package genius (Version 1.0.12)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
# norootforbuild
Name: genius
Version: 1.0.12
Release: 1
License: GPLv3+
Summary: General purpose calculator and mathematics tool
Group: Productivity/Scientific/Math
Url: http://www.jirka.org/genius.html
Source: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
BuildRequires: gtk2-devel
BuildRequires: gtksourceview-devel
BuildRequires: intltool
BuildRequires: mpfr-devel
BuildRequires: ncurses-devel
BuildRequires: readline-devel
BuildRequires: scrollkeeper
BuildRequires: update-desktop-files
BuildRequires: vte-devel
Recommends: %{name}-lang
%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 is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%package -n gnome-genius
License: GPLv3+
Group: Productivity/Scientific/Math
Summary: General purpose calculator and mathematics tool - GNOME Interface
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 is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%package devel
License: GPLv3+
Group: Productivity/Scientific/Math
Summary: General purpose calculator and mathematics tool - Development Files
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 is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%lang_package
%prep
%setup -q
%build
export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"
%configure \
--libexec=%{_prefix}/lib/genius \
--disable-scrollkeeper \
--disable-update-mimedb
make %{?_smp_mflags}
%install
%makeinstall
# 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.*
# Change sr@Latn to sr@latin
mv %{buildroot}%{_datadir}/locale/sr@Latn %{buildroot}%{_datadir}/locale/sr@latin
%find_lang %{name} %{?no_lang_C}
%suse_update_desktop_file gnome-genius
%fdupes %{buildroot}%{_datadir}/genius
%clean
rm -rf %{buildroot}
%post
%if 0%{?suse_version} > 1130
%desktop_database_post
%icon_theme_cache_post
%mime_database_post
%else
if test -x usr/bin/update-mime-database ; then
usr/bin/update-mime-database usr/share/mime >/dev/null
fi
%endif
%postun -n gnome-genius
%if 0%{?suse_version} > 1130
%desktop_database_postun
%icon_theme_cache_postun
%mime_database_postun
%else
if test -x usr/bin/update-mime-database ; then
usr/bin/update-mime-database usr/share/mime >/dev/null
fi
%endif
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%{_datadir}/genius
%{_bindir}/genius
%files -n gnome-genius
%defattr(-,root,root)
%dir %{_datadir}/gnome/
%dir %{_datadir}/gnome/help/
%dir %{_datadir}/gnome/help/%{name}/
%doc %{_datadir}/gnome/help/%{name}/C/
%dir %{_datadir}/omf/
%dir %{_datadir}/omf/%{name}/
%doc %{_datadir}/omf/%{name}/%{name}-C.omf
%{_bindir}/gnome-genius
%{_prefix}/lib/genius
%{_datadir}/applications/gnome-genius.desktop
%{_datadir}/icons/hicolor/*/apps/genius-stock-plot.png
%{_datadir}/icons/hicolor/*/apps/gnome-genius.png
%{_datadir}/mime/packages/genius.xml
%files devel
%defattr(-,root,root)
%{_includedir}/genius
%files lang -f %{name}.lang
%defattr(-,root,root)
%dir %{_datadir}/gnome
%dir %{_datadir}/gnome/help
%dir %{_datadir}/omf/genius
%changelog