wok view nms/receipt @ rev 24149

gcc: remove obsolete gawk comment
author Richard Dunbar <mojo@slitaz.org>
date Sat Nov 27 15:12:31 2021 -0500 (2021-11-27)
parents 9820f9ae38d5
children ecc0d362278b
line source
1 # SliTaz package receipt.
3 PACKAGE="nms"
4 VERSION="0.3.3"
5 CATEGORY="utilities"
6 SHORT_DESC="Decrypting effects for text."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="no-more-secrets-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/bartobri/no-more-secrets"
11 WGET_URL="$WEB_SITE/archive/v$VERSION/$TARBALL"
12 PROVIDE="no-more-secrets"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make &&
27 make prefix=/usr DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }