# Maintainer: Marc Paradise pkgname=chef-workstation pkgver=21.2.278 pkgrel=1 pkgdesc="Chef Workstation gives you everything you need to get started with Chef. Start scanning and configuring your environments today with InSpec and chef-run." arch=('x86_64') url="https://downloads.chef.io/chef-workstation/" license=('Apache') depends=() conflicts=(chef-dk chef chef-solo chef-client cinc) source=('https://packages.chef.io/files/stable/chef-workstation/21.2.278/ubuntu/18.04/chef-workstation_21.2.278-1_amd64.deb') sha256sums=('6457062a347fe002d3452eccf18064f1e39ab7373a5618c06ab8e32ac6f32841') package() { cd "$srcdir" bsdtar -xf data.tar.xz -C "$pkgdir" mkdir -p "$pkgdir/usr/bin" binaries="chef-run berks chef chef-apply chef-cli chef-client chef-shell chef-solo chef-vault cookstyle dco delivery inspec kitchen knife ohai push-apply pushy-client pushy-service-manager" 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" }