wok view minised/receipt @ rev 24833

updated libssh and libssh-dev (0.9.4 -> 0.9.6)
author Hans-G?nter Theisgen
date Fri Mar 25 06:33:51 2022 +0100 (2022-03-25)
parents 526643e4fb00
children 4cc045d1c2be
line source
1 # SliTaz package receipt.
3 PACKAGE="minised"
4 VERSION="1.15"
5 CATEGORY="base-system"
6 SHORT_DESC="A smaller, cheaper, faster SED implementation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="httpa://www.exactcode.com/opensource/minised/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://dl.exactcode.de/oss/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/*}/ 2>/dev/null | \
21 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }