wok annotate nms/receipt @ rev 25638

Up tinyssh (20240101 CVE-2023-48795)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 05 10:31:44 2024 +0000 (5 months ago)
parents ecc0d362278b
children
rev   line source
paul@19551 1 # SliTaz package receipt.
paul@19551 2
paul@19551 3 PACKAGE="nms"
Hans-G?nter@25000 4 VERSION="1.0.1"
paul@19551 5 CATEGORY="utilities"
paul@19551 6 SHORT_DESC="Decrypting effects for text."
paul@19551 7 MAINTAINER="paul@slitaz.org"
paul@19551 8 LICENSE="GPL3"
paul@19551 9 WEB_SITE="https://github.com/bartobri/no-more-secrets"
Hans-G?nter@25000 10 REPOLOGY="no-more-secrets"
Hans-G?nter@25000 11
Hans-G?nter@25000 12 SOURCE="no-more-secrets"
Hans-G?nter@25000 13 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@21242 14 WGET_URL="$WEB_SITE/archive/v$VERSION/$TARBALL"
Hans-G?nter@25000 15
pascal@21242 16 PROVIDE="no-more-secrets"
paul@19551 17 DEPENDS="ncurses"
pascal@21242 18 BUILD_DEPENDS="ncurses-dev"
paul@19551 19
pascal@25600 20 # What is the latest version available today?
pascal@24055 21 current_version()
pascal@24055 22 {
pascal@24055 23 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@25600 24 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24055 25 }
pascal@24055 26
paul@19551 27 # Rules to configure and make the package.
paul@19551 28 compile_rules()
paul@19551 29 {
pascal@21242 30 make &&
paul@19551 31 make prefix=/usr DESTDIR=$DESTDIR install
paul@19551 32 }
paul@19551 33
paul@19551 34 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@19551 35 genpkg_rules()
paul@19551 36 {
Hans-G?nter@25000 37 cook_copy_folders bin
paul@19551 38 }