# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com

pkgname=sshpass
pkgver=1.06
pkgrel=2
pkgdesc='Fool ssh into accepting an interactive password non-interactively'
arch=('x86_64')
url='https://sourceforge.net/projects/sshpass/'
license=('GPL')
depends=('openssh')
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('f59695e3b9761fb51be7d795819421f9')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et:
