25 lines
568 B
Bash
25 lines
568 B
Bash
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
|
|
|
|
pkgname=sshpass
|
|
pkgver=1.05
|
|
pkgrel=2
|
|
pkgdesc='Full ssh into accepting an interactive password non-interactively'
|
|
arch=('i686' 'x86_64')
|
|
url='http://sourceforge.net/projects/sshpass/'
|
|
groups=('net-utils')
|
|
license=('GPL')
|
|
depends=('openssh')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('c52d65fdee0712af6f77eb2b60974ac7')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --build=${CHOST} --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|