Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Added a .spec file, matching Fedora RPM packaging guidelines #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions git-sh.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
%global _enable_debug_package 0
%global debug_package %{nil}
%global __os_install_post /usr/lib/rpm/brp-compress %{nil}

Name: git-sh
Version: 1.3
Release: 1%{?dist}
Summary: A customized bash shell suitable for git work

License: GPLv2
URL: https://github.com/rtomayko/%{name}
Source0: https://github.com/rtomayko/%{name}/archive/%{version}.tar.gz

%description
A customized bash shell suitable for git work.

%prep
%setup

%build
make

%install
rm -rf $RPM_BUILD_ROOT
%make_install PREFIX=$RPM_BUILD_ROOT/usr/

%files
%doc CHANGES COPYING README.markdown
%{_bindir}/*
%{_mandir}/*

%changelog
* Thu Feb 6 2014 Leonid Podolny <[email protected]> - 1.3-1
- Initial spec file