summaryrefslogtreecommitdiff
path: root/community/sshpass/PKGBUILD
blob: 6a520cca96e481828008a8e8aac10f9aba969902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id: PKGBUILD 114518 2014-07-01 18:51:38Z seblu $
# 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.05
pkgrel=2
pkgdesc='Fool ssh into accepting an interactive password non-interactively'
arch=('i686' 'x86_64')
url='http://sourceforge.net/projects/sshpass/'
license=('GPL')
depends=('openssh')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('c52d65fdee0712af6f77eb2b60974ac7')

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

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

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