summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/dpkg_deploy.yaml
blob: a97fb2bbfdcc5274f839c459a913a9dd1f17b4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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}