From 4695e969d0aa4bfdc3d94dd1e0f07b893605ce2c Mon Sep 17 00:00:00 2001 From: Leonid Podolny Date: Fri, 7 Feb 2014 16:06:26 +0200 Subject: [PATCH] Added a .spec file, matching Fedora RPM packaging guidelines --- git-sh.spec | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 git-sh.spec diff --git a/git-sh.spec b/git-sh.spec new file mode 100644 index 0000000..dc29e90 --- /dev/null +++ b/git-sh.spec @@ -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 - 1.3-1 +- Initial spec file