wok view grub-btrfs/receipt @ rev 25680

updated gnu-efi (3.0.14 -> 3.0.17)
author Hans-G?nter Theisgen
date Mon Mar 18 18:46:02 2024 +0100 (4 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="grub-btrfs"
4 VERSION="4.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Include btrfs snapshots at boot options. (Grub menu)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/Antynea/grub-btrfs"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz"
14 DEPENDS="btrfs-progs grub2 bash gawk"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
34 cp -a $install/etc $fs/
35 cp -a $install/usr/bin $fs/usr
36 }