forked from yadm-dev/yadm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69bde74
commit fe6e2a1
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Summary: Yet Another Dotfiles Manager | ||
Name: yadm | ||
Version: 1.02 | ||
Release: 1 | ||
URL: https://github.com/TheLocehiliosan/yadm | ||
License: GPL | ||
Group: Development/Tools | ||
Packager: Tim Byrne <[email protected]> | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root | ||
Requires: bash | ||
Requires: git | ||
Source0: %{name}-%{version}.tar.gz | ||
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 | ||
%setup | ||
|
||
%build | ||
|
||
%install | ||
rm -rf ${RPM_BUILD_ROOT} | ||
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 | ||
|
||
%clean | ||
rm -rf ${RPM_BUILD_ROOT} | ||
|
||
%files | ||
%defattr(-,root,root) | ||
%attr(755,root,root) %{_bindir}/yadm | ||
%attr(644,root,root) %{_mandir}/man1/* |