# Maintainer: Greg Fitzgerald pkgname=chef-dk pkgver=1.3.40 pkgrel=1 _ubuntuver=raring _ubunturel=4 pkgdesc="The Chef Development Kit contains everything you need to start using Chef along with the tools essential to managing the code that runs your business." arch=('x86_64') url="https://downloads.chef.io/chef-dk/" license=('Apache') depends=() conflicts=( chef chef-solo ) source=("https://packages.chef.io/files/stable/chefdk/${pkgver}/ubuntu/12.04/chefdk_${pkgver}-1_amd64.deb") sha512sums=('22ab788e3f98cefdd19e20787f4b549b3ec19cbd08c794b9716b232702742933dfaeb020d4bc1103d44ffefb6329697841d273c623b1ccd24f4e92d0ae611c00') package() { cd "$srcdir" bsdtar -xf data.tar.gz -C "$pkgdir" # cleanup .git folders, any idea why they are in the package? find $pkgdir -type d -name ".git" | xargs rm -rf # link executables binaries="berks chef chef-apply chef-shell chef-solo chef-zero delivery fauxhai foodcritic kitchen knife ohai push-apply pushy-client pushy-service-manager rubocop cookstyle chef-client" mkdir -p $pkgdir/usr/bin for binary in $binaries; do ln -s /opt/chefdk/bin/$binary $pkgdir/usr/bin/ || error_exit "Cannot link $binary to /usr/bin" done chown -Rh 0:0 $pkgdir chmod 755 $pkgdir/opt }