blob: 18bff2c7c15a42f4ef125ef8faccd2a01e2f1042 (
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
28
29
30
31
32
33
34
35
36
|
# This file was generated by GoReleaser. DO NOT EDIT.
# Maintainer: Randy Fay <randy.fay@ddev.com>
# Maintainer: Stas Zhuk <stas.zhuk@ddev.com>
pkgname='ddev-test-edge-bin'
pkgver=1.102.2
pkgrel=1
pkgdesc='DDEV: a local web development environment (edge)'
url='https://github.com/ddev/ddev'
arch=('aarch64' 'x86_64')
license=('Apache 2')
provides=('ddev')
conflicts=('ddev')
depends=('docker' 'docker-buildx' 'mkcert')
optdepends=('bash-completion: subcommand completion support')
source_aarch64=("${pkgname}_${pkgver}_aarch64.tar.gz::https://github.com/ddev-test/ddev/releases/download/v${pkgver}/ddev_linux-arm64.v${pkgver}.tar.gz")
sha256sums_aarch64=('20f1461fd95e7bad74ffe8627f7ba91c389345a5b40b67e92ff1c2a45649c95a')
source_x86_64=("${pkgname}_${pkgver}_x86_64.tar.gz::https://github.com/ddev-test/ddev/releases/download/v${pkgver}/ddev_linux-amd64.v${pkgver}.tar.gz")
sha256sums_x86_64=('a767f3c9fcfb8fb6c5e6b97f22dab534f1b693bec93ac8f18c4d38ecccf702d2')
package() {
# bin
install -Dm755 "./ddev" "${pkgdir}/usr/bin/ddev"
install -Dm755 "./ddev-hostname" "${pkgdir}/usr/bin/ddev-hostname"
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/ddev/LICENSE"
# completions
mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d/"
install -Dm644 "./ddev_bash_completion.sh" "${pkgdir}/usr/share/bash-completion/completions/ddev"
install -Dm644 "./ddev_zsh_completion.sh" "${pkgdir}/usr/share/zsh/site-functions/_ddev"
install -Dm644 "./ddev_fish_completion.sh" "${pkgdir}/usr/share/fish/vendor_completions.d/ddev.fish"
}
|