52 lines
1.4 KiB
RPMSpec
52 lines
1.4 KiB
RPMSpec
Name: abduco
|
|
Version: 0.4
|
|
Release: 1%{?dist}
|
|
Summary: Session management in a clean and simple way
|
|
|
|
License: ISC
|
|
URL: http://www.brain-dump.org/projects/%{name}/
|
|
Source0: %{url}/%{name}-%{version}.tar.gz
|
|
|
|
%description
|
|
%{name} provides session management i.e. it allows programs to be run
|
|
independently from its controlling terminal. That is programs can be
|
|
detached - run in the background - and then later reattached.
|
|
Together with dvtm it provides a simpler and cleaner alternative to tmux or
|
|
screen.
|
|
|
|
%prep
|
|
%setup -q
|
|
# Apply applicable build flags
|
|
echo '#!/bin/sh' > ./configure
|
|
chmod +x ./configure
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install PREFIX=%{_prefix} STRIP=:
|
|
|
|
%files
|
|
%doc LICENSE README.md
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.*
|
|
|
|
%changelog
|
|
* Thu Mar 19 2015 Denis Fateyev <denis@fateyev.com> - 0.4-1
|
|
- Update to 0.4 release
|
|
|
|
* Thu Feb 26 2015 Denis Fateyev <denis@fateyev.com> - 0.3-1
|
|
- Update to 0.3 release
|
|
|
|
* Sat Dec 6 2014 Ville Skyttä <ville.skytta@iki.fi> - 0.2-2
|
|
- Don't strip binaries too early
|
|
|
|
* Tue Nov 18 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.2-1
|
|
- update to 0.2 (RHBZ #1165180)
|
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Mon Jul 07 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.1-1
|
|
- Initial package (RHBZ #1116653)
|