]> git.pld-linux.org Git - packages/docker.git/blame - lxc-docker.spec
new, version 0.5.3
[packages/docker.git] / lxc-docker.spec
CommitLineData
b877f7b7
ER
1# TODO:
2# - handle network downloads:
3# - github.com/gorilla/mux (download)
4# - github.com/gorilla/context (download)
5# - github.com/kr/pty (download)
6Summary: Docker: the Linux container engine
7Name: lxc-docker
8Version: 0.5.3
9Release: 0.1
10License: Apache v2.0
11Group: Applications/System
12Source0: https://github.com/dotcloud/docker/archive/v%{version}.tar.gz
13# Source0-md5: ff7b814574bbaf9e55dfe1c266ae991e
14URL: http://github.com/dotcloud/docker
15BuildRequires: golang
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19Docker complements LXC with a high-level API which operates at the
20process level. It runs unix processes with strong guarantees of
21isolation and repeatability across servers.
22
23Docker is a great building block for automating distributed systems:
24large-scale web deployments, database clusters, continuous deployment
25systems, private PaaS, service-oriented architectures, etc.
26
27%prep
28%setup -q -n docker-%{version}
29
30%build
31%{__make} VERBOSE=1
32
33%install
34rm -rf $RPM_BUILD_ROOT
35install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
36install -p bin/docker $RPM_BUILD_ROOT%{_bindir}/lxc-docker
37cp -p packaging/debian/lxc-docker.1 $RPM_BUILD_ROOT%{_mandir}/man1
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
44%doc README.md CHANGELOG.md CONTRIBUTING.md FIXME LICENSE AUTHORS NOTICE MAINTAINERS
45%attr(755,root,root) %{_bindir}/lxc-docker
46%{_mandir}/man1/lxc-docker.1*
This page took 0.030063 seconds and 4 git commands to generate.