wok-next view libssh2/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libssh2"
4 VERSION="1.8.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"
13 TARBALL_SHA1="baf2d1fb338eee531ba9b6b121c64235e089e0f5"
15 BUILD_DEPENDS="openssl-dev zlib-dev"
16 SPLIT="$PACKAGE-dev $PACKAGE"
18 COPY_dev="@dev *.so"
20 DEPENDS_std="openssl zlib"
21 DEPENDS_dev="$PACKAGE openssl-dev zlib-dev"
23 compile_rules() {
24 ./configure \
25 --disable-static \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make install
30 }