# Maintainer: Danilo Kuehn _pkgname=dry _pkgver=v0.10-beta.1 _pkgdownload=${_pkgname}_${_pkgver} pkgname=dry-bin pkgver=0.10 pkgrel=1 pkgdesc="dry is a terminal application to manage Docker containers and images" url="http://moncho.github.io/dry/" arch=('x86_64' 'i686') license=('MIT') depends=('docker') if test "$CARCH" == i686; then source=( "${_pkgdownlad}::https://github.com/moncho/dry/releases/download/${_pkgver}/dry-linux-386" ) sha256sums=( 'aea586a2d8f6e38c9f24a7757e954636248209a87480faea8a3e3f96021dd94a' ) else source=( "${_pkgdownload}::https://github.com/moncho/dry/releases/download/${_pkgver}/dry-linux-amd64" ) sha256sums=( 'e2865e54d5ff825b2a2b5f52b8271d86fd51eff868dd8a7cf3a7b81fa854a660' ) fi package() { install -Dm755 "${srcdir}/${_pkgdownload}" "${pkgdir}/usr/bin/${_pkgname}" }