# Maintainer: Томас <70m4c@70m4c.su> # shellcheck disable=SC2148 # Ignore lack of shebang # shellcheck disable=SC2034 # Ignore "unused" PKGBUILD variables # shellcheck disable=SC2154 # Ignore "unassigned" references to $srcdir and $pkgdir pkgname=chef-workstation pkgver=22.10.1013 pkgrel=1 pkgdesc="Chef's developer toolkit that includes Infra, InSpec, Habitat, and tools like knife." arch=('x86_64') url="https://www.chef.io/downloads/tools/workstation" license=('custom:Chef EULA') depends=() conflicts=(chef-dk chef chef-solo cinc) replaces=('chef-dk') source=('https://packages.chef.io/files/stable/chef-workstation/22.10.1013/debian/11/chef-workstation_22.10.1013-1_amd64.deb') sha256sums=('487a98f9841be9b45a478fbf5dbdf7c9a82d998450474ed2ddd6ee3f443e41c7') package() { depends=('libxcrypt-compat') cd "$srcdir" || exit 1 bsdtar -xf data.tar.xz -C "$pkgdir" install -Dm644 "$pkgdir/opt/$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" mkdir -p "$pkgdir/usr/bin" binaries="berks chef chef-analyze chef-apply chef-cli chef-client chef-resource-inspector chef-run chef-service-manager chef-shell chef-solo chef-vault chef-windows-service chef-zero cookstyle delivery fauxhai foodcritic hab inspec kitchen knife mixlib-install ohai stove" for binary in $binaries; do ln -s "/opt/$pkgname/bin/$binary" "$pkgdir/usr/bin/" || error_exit "Cannot link $binary to /usr/bin" done chown -Rh 0:0 "$pkgdir" chmod -R 755 "$pkgdir/opt" }