summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/dpkg_deploy.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/plugins/elements/dpkg_deploy.yaml')
-rw-r--r--buildstream/plugins/elements/dpkg_deploy.yaml27
1 files changed, 0 insertions, 27 deletions
diff --git a/buildstream/plugins/elements/dpkg_deploy.yaml b/buildstream/plugins/elements/dpkg_deploy.yaml
deleted file mode 100644
index a97fb2bbf..000000000
--- a/buildstream/plugins/elements/dpkg_deploy.yaml
+++ /dev/null
@@ -1,27 +0,0 @@
-#dpkg_deploy default configuration
-
-variables:
- # packages' default value will be automatically replaced with
- # defaultscalculated from the input's split-rules. Replace this
- # with a space-separated list of packages to have more control
- # over what gets generated.
- #
- packages: <PACKAGES>
- buildpkg: |
- for package in %{packages}; do
- dpkg-deb --build %{build-root}/$package %{install-root}
- done
-
-config:
- # The element that should be staged into "/". It must contain
- # all the tools required to generate the image
- # base: image-tools.bst
-
- # The element that should be staged into %{build-root}. It is
- # expected to be the system that you're planning to turn into
- # an image.
- # input: foo-system.bst
-
- build-commands:
- - |
- %{buildpkg}