wok view afio/receipt @ rev 24978

Add memtest-efi32 & memtest-efi64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 07 11:09:47 2022 +0000 (24 months ago)
parents b569b85b0fb9
children ea7c7014b421
line source
1 # SliTaz package receipt.
3 PACKAGE="afio"
4 VERSION="2.5.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Archiver program for Linux/UNIX."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL"
9 WEB_SITE="https://github.com/kholtman/afio"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WGET_URL="https://github.com/kholtman/afio/archive/v$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE/tags 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make
28 cook_pick_manpages $src/afio.1
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/bin
35 cp -a $src/afio $fs/usr/bin
36 }