aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cc3aef7cfe3f9a732bcd027987897e6d294138bc (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
# This file was generated by GoReleaser. DO NOT EDIT.
# Maintainer: Randy Fay <randy at randyfay.com>

pkgname='ddev-edge-bin'
pkgver=1.23.0
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' 'mkcert')
optdepends=('bash-completion: subcommand completion support')

source_aarch64=("${pkgname}_${pkgver}_aarch64.tar.gz::https://github.com/ddev/ddev/releases/download/v1.23.0/ddev_linux-arm64.v1.23.0.tar.gz")
sha256sums_aarch64=('2b4f80f752f57ce9c27990438b45aaa7fc89015aecb1dcb833afe1766840ec7c')

source_x86_64=("${pkgname}_${pkgver}_x86_64.tar.gz::https://github.com/ddev/ddev/releases/download/v1.23.0/ddev_linux-amd64.v1.23.0.tar.gz")
sha256sums_x86_64=('0a3f9cc25cf0d7b68b37dcce85d2976cf9de8e00f86f43e9ec6cfa5f30e9b442')

package() {
  # bin
  install -Dm755 "./ddev" "${pkgdir}/usr/bin/ddev"
  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"
}