wok view libssh2/receipt @ rev 23889

created get-anydesk
author Hans-G?nter Theisgen
date Fri Jul 24 11:12:22 2020 +0100 (2020-07-24)
parents a78610b2eb47
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="libssh2"
4 VERSION="1.9.0"
5 CATEGORY="network"
6 SHORT_DESC="A client-side C library implementing the SSH2 protocol."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.libssh2.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 DEPENDS="libgcrypt libgpg-error libssl zlib"
15 BUILD_DEPENDS="libgcrypt-dev openssl-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }