wok view libssh/receipt @ rev 21009

updated gtick (0.4.2 -> 0.5.4)
author Hans-G?nter Theisgen
date Sat Mar 09 13:45:19 2019 +0100 (2019-03-09)
parents b4200e26ba1c
children c37502c14e80
line source
1 # SliTaz package receipt.
3 PACKAGE="libssh"
4 VERSION="0.7.5"
5 CATEGORY="network"
6 SHORT_DESC="Library for accessing ssh client services through C libraries"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.libssh.org/"
11 WGET_URL="https://red.libssh.org/attachments/download/195/$TARBALL"
12 TAGS="ssh"
14 DEPENDS="libssl"
15 BUILD_DEPENDS="cmake openssl-dev wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build
21 cd build
22 cmake ../ \
23 -DCMAKE_INSTALL_PREFIX=/usr \
24 -DCMAKE_BUILD_TYPE=Release
25 make
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }