git-tools/git-tools.spec
2020-05-14 22:29:20 +08:00

47 lines
1.1 KiB
RPMSpec

%bcond_with bootstrap
Name: git-tools
Version: 2019.11
Release: 1
Summary: Assorted git-related scripts
License: GPL3
URL: https://github.com/MestreLion/git-tools
Source0: https://github.com/MestreLion/git-tools/archive/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel python3-setuptools
%description
Assorted git-related scripts and tools
%prep
%autosetup -n %{name}-%{version}
%build
%install
install -d %{buildroot}%{_bindir}
install -m0755 git-branches-rename %{buildroot}%{_bindir}/
install -m0755 git-clone-subset %{buildroot}%{_bindir}/
install -m0755 git-find-uncommitted-repos %{buildroot}%{_bindir}/
install -m0755 git-rebase-theirs %{buildroot}%{_bindir}/
install -m0755 git-restore-mtime %{buildroot}%{_bindir}/
install -m0755 git-strip-merge %{buildroot}%{_bindir}/
install -d %{buildroot}%{_mandir}/man1
install -m644 man1/git-* %{buildroot}%{_mandir}/man1/
%check
%files
%license LICENSE.txt
%doc README.md
%{_bindir}/*
%{_mandir}/*
%changelog
* Tue Apr 28 2020 Wei Xiong <myeuler@163.com>
- init package