Blob Blame History Raw
Name:           abduco
Version:        0.1
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
# we don't want to strip binary
sed -i -e "/strip/d" Makefile

%build
%configure
make %{?_smp_mflags}

%install
%make_install PREFIX=%{_prefix}

%files
%doc LICENSE README
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.*

%changelog
* Mon Jul 07 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.1-1
- Initial package (RHBZ #1116653)