mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
27 lines
507 B
Bash
27 lines
507 B
Bash
#
|
|
# Core packages for Chakra
|
|
#
|
|
|
|
pkgname=sshpass
|
|
pkgver=1.05
|
|
pkgrel=1
|
|
pkgdesc="Tool for faking a ssh password into an interactive session"
|
|
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
|
|
}
|
|
|