2015-09-09 22:08:39 +00:00
|
|
|
Summary: Yet Another Dotfiles Manager
|
|
|
|
Name: yadm
|
2016-04-22 21:33:02 +00:00
|
|
|
Version: 1.04
|
2015-09-09 22:08:39 +00:00
|
|
|
Release: 1
|
|
|
|
URL: https://github.com/TheLocehiliosan/yadm
|
2016-04-26 22:11:02 +00:00
|
|
|
License: GPLv3
|
2015-09-09 22:08:39 +00:00
|
|
|
Group: Development/Tools
|
|
|
|
Requires: bash
|
|
|
|
Requires: git
|
2016-04-27 07:28:46 +00:00
|
|
|
Source: https://github.com/TheLocehiliosan/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
2015-09-09 22:08:39 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
yadm is a dotfile management tool with 3 main features: Manages files across
|
|
|
|
systems using a single Git repository. Provides a way to use alternate files on
|
|
|
|
a specific OS or host. Supplies a method of encrypting confidential data so it
|
|
|
|
can safely be stored in your repository.
|
|
|
|
|
|
|
|
%prep
|
2016-04-26 22:11:02 +00:00
|
|
|
%setup -q
|
2015-09-09 22:08:39 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
|
|
|
|
install -m 755 yadm ${RPM_BUILD_ROOT}%{_bindir}
|
|
|
|
install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%attr(755,root,root) %{_bindir}/yadm
|
|
|
|
%attr(644,root,root) %{_mandir}/man1/*
|
2016-04-26 22:11:02 +00:00
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Fri Apr 22 2016 Tim Byrne <sultan@locehilios.com> 1.04-1
|
|
|
|
- Support alternate paths for yadm data
|
|
|
|
- Support asymmetric encryption
|
|
|
|
- Prevent the mixing of output and gpg prompts
|