# Maintainer: Trevor Bramble pkgname=chef-workstation pkgver=0.1.148 pkgrel=1 _ubunturel=18 _ubuntuver=04 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 ) source=("https://packages.chef.io/files/stable/${pkgname}/${pkgver}/ubuntu/${_ubunturel}.${_ubuntuver}/${pkgname}_${pkgver}-1_amd64.deb") sha256sums=('a2e5366a7f99a0ed102e886fedbf4498679b2e2d09efb10e4b5121627c4452d1') package() { cd "$srcdir" bsdtar -xf data.tar.gz -C "$pkgdir" mkdir -p "$pkgdir/usr/bin" chefdk_binaries="berks chef chef-apply chef-client chef-shell chef-solo chef-vault cookstyle dco delivery foodcritic inspec kitchen knife ohai push-apply pushy-client pushy-service-manager" binaries="chef-run chefx $chefdk_binaries" 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" }