blob: 3547aa2b75b7e75fee2a40afff2e16ad687f4a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
MAKEDEPS="make"
DEPS="libressl openssh libgcrypt zlib"
PKG_VER=1.10.0
SOURCE=https://www.libssh2.org/download/libssh2-$PKG_VER.tar.gz
DESC="A client-side C library implementing the SSH2 protocol"
prepare () {
./configure --prefix=/usr --disable-static
}
build () {
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|