blob: 85c1d4c29abd03b4e76d68fd8e0b8d554ff9bb09 (
plain)
1 # Description: A library implementing the SSH2 protocol as defined by Internet Drafts
2 # URL: https://www.libssh2.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=libssh2
6 version=1.10.0
7 release=1
8 source=(https://www.libssh2.org/download/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=$PKG install
15 }
|