wok-next annotate 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
rev   line source
al@19741 1 # SliTaz package receipt v2.
pascal@17533 2
pascal@17533 3 PACKAGE="libssh2"
al@19605 4 VERSION="1.8.0"
pascal@17533 5 CATEGORY="network"
pascal@17533 6 SHORT_DESC="A client-side C library implementing the SSH2 protocol"
pascal@17533 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17533 8 LICENSE="BSD"
al@19605 9 WEB_SITE="https://www.libssh2.org/"
al@19605 10
pascal@17533 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19605 12 WGET_URL="${WEB_SITE}download/$TARBALL"
al@21149 13 TARBALL_SHA1="baf2d1fb338eee531ba9b6b121c64235e089e0f5"
pascal@17533 14
al@19605 15 BUILD_DEPENDS="openssl-dev zlib-dev"
al@21149 16 SPLIT="$PACKAGE-dev $PACKAGE"
al@21149 17
al@21149 18 COPY_dev="@dev *.so"
al@21149 19
al@21149 20 DEPENDS_std="openssl zlib"
al@21149 21 DEPENDS_dev="$PACKAGE openssl-dev zlib-dev"
pascal@17533 22
al@20443 23 compile_rules() {
al@21149 24 ./configure \
al@21149 25 --disable-static \
al@21149 26 $CONFIGURE_ARGS &&
al@20595 27 fix libtool &&
al@20595 28 make &&
al@20595 29 make install
pascal@17533 30 }