blob: 9ea38530f8c02b4dceaf6c7c02f7ef38e47b59f5 (
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
29
30
31
32
33
34
35
36
|
# Maintainer: dsoyet <dsoyet@outlook.com>
pkgname=sshpass-totp
pkgver=r64
pkgrel=2
pkgdesc="A tool for non-interactivly performing password authentication"
arch=('i686' 'x86_64')
url="https://github.com/dora38/sshpass"
license=('GPL')
depends=('glibc' 'openssh')
makedepends=('base-devel')
provides=("sshpass=$pkgver")
conflicts=('sshpass')
source=("git+https://github.com/dora38/sshpass.git")
sha256sums=('SKIP')
build() {
cd "sshpass"
./bootstrap
./configure \
--prefix="/usr"
make
}
check() {
cd "sshpass"
#make check
}
package() {
cd "sshpass"
make DESTDIR="$pkgdir" install
}
|