blob: ebf8cdf1aaeefc11db3af89ccaac6c1ae3004f1b (
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="openssl 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
}
|