-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
nfpm.yaml
38 lines (38 loc) · 988 Bytes
/
nfpm.yaml
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
28
29
30
31
32
33
34
35
36
37
38
name: "dl"
arch: "${PKG_ARCH}"
platform: "linux"
version: "${PKG_VERSION}"
section: "utils"
depends:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-buildx-plugin
- docker-compose-plugin
- libnss3-tools
maintainer: "Sergey Voloshin <[email protected]>"
description: |-
Deploy Local - site deployment assistant locally.
A convenient wrapper over docker-compose, which simplifies the local deployment of the project.
vendor: "DeployLocal"
homepage: "https://local-deploy.github.io"
license: "MIT"
scripts:
preinstall: "./.github/scripts/packages/preinstall.sh"
contents:
- src: bin/dl
dst: /usr/bin/dl
- src: .github/scripts/packages/completions/zsh
dst: /usr/share/zsh/vendor-completions/_dl
- src: .github/scripts/packages/completions/bash
dst: /usr/share/bash-completion/completions/dl
overrides:
archlinux:
depends:
- docker
- docker-compose
- nss
deb:
depends:
- docker-ce (>= 5:23)
- libnss3-tools (>= 2:2)