summaryrefslogtreecommitdiff
path: root/repo/system/libssh2.xibuild
blob: 086b6869e8430def7127653621fa3dcd98b85145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

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
}