From 54275f88b9865a9f9e05a0f7545a62f0f2b9fe01 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 20 Feb 2015 13:22:56 -0500 Subject: [PATCH] Added initial rpm spec file --- ca-scripts.spec | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ca-scripts.spec diff --git a/ca-scripts.spec b/ca-scripts.spec new file mode 100644 index 0000000..1ab31eb --- /dev/null +++ b/ca-scripts.spec @@ -0,0 +1,34 @@ +Summary: SSL Certificate Authority Management Scripts +Name: ca-scripts +Version: 0.9.0 +Release: 1 +URL: https://github.com/erenfro/ca-scripts +License: GPL +Group: Applications/Internet +BuildRoot: ${_tmppath}/${name}-root +Requires: bash +BuildArch: noarch + +%description +SS Certificate Authority Management Scripts + +%prep +%setup +%build + +%install +rm -rf ${RPM_BUILD_ROOT} +mkdir -p ${RPM_BUILD_ROOT}/opt/ca-scripts +make install + +%clean +rm -rf ${RPM_BUILD_ROOT} + +%fils +%defattr(-,root,root) +%attr(755,root,root) ${RPM_BUILD_ROOT}/opt/${RPM_PACKAGE_NAME}/bin + +%changelog +* Thu Feb 19 2015 Eric Renfro +- Initial release. +