]> git.pld-linux.org Git - packages/fleet.git/blame_incremental - fleet.spec
new, version 0.9.0
[packages/fleet.git] / fleet.spec
... / ...
CommitLineData
1Summary: A distributed init system
2Name: fleet
3Version: 0.9.0
4Release: 0.1
5License: Apache v2.0
6Group: Base
7Source0: https://github.com/coreos/fleet/archive/v%{version}/%{name}-%{version}.tar.gz
8# Source0-md5: 7535590f5513d0da0048a0ba5da616ba
9URL: https://github.com/coreos/fleet/
10BuildRequires: golang >= 1.2.1-3
11BuildRequires: systemd-devel
12ExclusiveArch: %{x8664}
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16fleet ties together systemd and etcd into a distributed init system.
17
18Think of it as an extension of systemd that operates at the cluster
19level instead of the machine level. This project is very low level and
20is designed as a foundation for higher order orchestration.
21
22%prep
23%setup -q
24
25%build
26sh -x build
27
28%install
29rm -rf $RPM_BUILD_ROOT
30install -d $RPM_BUILD_ROOT{%{_bindir},%{_sysconfdir}/%{name}}
31install -p bin/fleetctl $RPM_BUILD_ROOT%{_bindir}
32install -p bin/fleetd $RPM_BUILD_ROOT%{_bindir}
33cp -p %{name}.conf.sample $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/%{name}.conf
34
35%clean
36rm -rf $RPM_BUILD_ROOT
37
38%files
39%defattr(644,root,root,755)
40%doc Documentation/ examples/ CONTRIBUTING.md DCO LICENSE MAINTAINERS NOTICE README.md
41%dir %attr(750,root,root) %{_sysconfdir}/%{name}
42%attr(750,root,root) %{_sysconfdir}/%{name}/%{name}.conf
43%attr(755,root,root) %{_bindir}/fleetctl
44%attr(755,root,root) %{_bindir}/fleetd
This page took 0.046421 seconds and 4 git commands to generate.