forked from pool/units
%python3_fix_shebang macro, [bsc#1212476] OBS-URL: https://build.opensuse.org/package/show/Education/units?expand=0&rev=44
78 lines
2.2 KiB
RPMSpec
78 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package units
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%bcond_without units_cur
|
|
Name: units
|
|
Version: 2.23
|
|
Release: 0
|
|
Summary: Conversion Utility
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Scientific/Physics
|
|
URL: https://www.gnu.org/software/units/
|
|
Source0: http://ftp.gnu.org/gnu/units/units-%{version}.tar.gz
|
|
Source1: http://ftp.gnu.org/gnu/units/units-%{version}.tar.gz.sig
|
|
Source2: https://savannah.gnu.org/people/viewgpg.php?user_id=33238#/%{name}.keyring
|
|
BuildRequires: bison
|
|
BuildRequires: readline-devel
|
|
%if %{with units_cur}
|
|
BuildRequires: python3-base
|
|
Requires: python3-requests
|
|
%endif
|
|
|
|
%description
|
|
The 'units' program converts quantities expressed in various scales to
|
|
their equivalents in other scales.
|
|
|
|
Units can also convert temperature values (Fahrenheit to Celsius, for
|
|
example) but this needs a slightly different input syntax. See the man
|
|
page for details.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fPIE"
|
|
export LDFLAGS="-pie"
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
ln -fsv ../../..%{_sharedstatedir}/units/currency.units %{buildroot}%{_datadir}/units
|
|
%python3_fix_shebang
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%files
|
|
%license COPYING
|
|
%{_bindir}/units
|
|
%{_datadir}/units
|
|
%dir %{_localstatedir}/lib/units
|
|
%{_localstatedir}/lib/units/currency.units
|
|
%{_localstatedir}/lib/units/cpi.units
|
|
%doc NEWS README
|
|
%{_infodir}/units.info%{?ext_info}
|
|
%{_mandir}/man1/units.1%{?ext_man}
|
|
%if %{with units_cur}
|
|
%{_bindir}/units_cur
|
|
%endif
|
|
|
|
%changelog
|