ab4b9fbdd0
- bump version 0.1.6, note that tcal and dcal has been renamed to tconv and dconv - add devel package - minimize BuildRequires - actually enable tests - minor formatting changes - use globbing for executable file list because we expect some more to be added in next releases OBS-URL: https://build.opensuse.org/package/show/utilities/dateutils?expand=0&rev=6
88 lines
2.4 KiB
RPMSpec
88 lines
2.4 KiB
RPMSpec
#
|
|
# rpm spec file
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
|
|
Name: dateutils
|
|
Version: 0.1.6
|
|
Release: 0
|
|
License: BSD
|
|
Summary: Nifty command line date and time utilities
|
|
Url: https://github.com/hroptatyr/dateutils
|
|
Group: Productivity/Text/Utilities
|
|
Source: %{name}-%{version}.tar.gz
|
|
BuildRequires: pkgconfig
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Requires(pre): info
|
|
%description
|
|
Dateutils are a bunch of tools that revolve around fiddling with dates
|
|
and times in the command line with a strong focus on use cases that
|
|
arise when dealing with large amounts of financial data. Their target
|
|
market is shell scripts that need date calculations or calendar
|
|
conversions, and as such they are highly pipe-able and modeled after
|
|
their well-known cousins (e.g. dtest vs. test, or dgrep vs. grep).
|
|
|
|
%package -n %{name}-devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries/Other
|
|
Requires: %{name} = %{version}
|
|
|
|
%description -n %{name}-devel
|
|
This package contains the header and source files needed for
|
|
compiling programs using the %{name} libraries.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --docdir=%{_docdir}/%{name}
|
|
make V=1
|
|
|
|
%install
|
|
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}}
|
|
rm -f %{buildroot}%{_infodir}/dir
|
|
|
|
%check
|
|
make check
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
# How to make that info stuff portable?
|
|
%if 0%{?install_info:1} > 0
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info*
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info*
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README
|
|
%{_bindir}/*
|
|
%doc %{_infodir}/*.info*
|
|
%doc %{_mandir}/man1/*.1*
|
|
|
|
%files -n %{name}-devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/dateutils/
|
|
%{_libdir}/pkgconfig/libdu*.pc
|
|
|
|
%changelog
|