12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import autotools
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import get
- shelltools.export("AUTO_GOPATH", "1")
- shelltools.export("DOCKER_GITCOMMIT", "b9f10c9")
- shelltools.export("GOROOT","/usr/lib/go")
- shelltools.export("GOPATH", "%s" % get.workDIR())
- shelltools.export("CGO_CFLAGS", "-I/usr/include")
- shelltools.export("CGO_LDFLAGS", "-L/usr/lib")
- shelltools.export("DOCKER_BUILDTAGS","seccomp")
- #shelltools.export("DOCKER_INITPATH", "/usr/lib/docker/dockerinit")
-
- NoStrip=["/"]
- def build():
- #shelltools.cd("docker")
- shelltools.system("hack/make.sh dynbinary")
- def install():
- pisitools.dobin("bundles/1.11.2/dynbinary/docker")
- pisitools.dobin("bundles/1.11.2/dynbinary/docker-1.11.2")
-
- # insert udev rules
- pisitools.insinto("/lib/udev/rules.d", "contrib/udev/*.rules")
- #insert contrib in docs
- pisitools.insinto("/usr/share/doc/docker", "contrib")
- pisitools.dodoc("VERSION", "LICENSE", "README.md", "AUTHORS", "CONTRIBUTING.md", "CHANGELOG.md", "NOTICE")
|