wok annotate grub4dos-linux/receipt @ rev 25540
Update some web_site/wget_url with https
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 09 18:12:54 2023 +0000 (20 months ago) |
parents | 800de22df35e |
children |
rev | line source |
---|---|
pascal@6240 | 1 # SliTaz package receipt. |
pascal@6240 | 2 |
pascal@6240 | 3 PACKAGE="grub4dos-linux" |
pascal@6240 | 4 VERSION="0.4.4" |
pascal@6240 | 5 CATEGORY="system-tools" |
pascal@23892 | 6 SHORT_DESC="Some enhancements of grub boot loader - linux files." |
pascal@6240 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15589 | 8 LICENSE="GPL2" |
pascal@25460 | 9 WEB_SITE="https://grub4dos.sourceforge.net/" |
pascal@6240 | 10 WANTED="grub4dos" |
pascal@6240 | 11 PROVIDE="grub" |
pascal@6240 | 12 |
pascal@6240 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@6240 | 14 genpkg_rules() |
pascal@6240 | 15 { |
pascal@15589 | 16 libarch=$(basename `ls $install/usr/lib/grub`) |
gokhlayeh@11362 | 17 mkdir -p $fs/usr/lib/grub/$libarch |
pascal@15589 | 18 cp -a $install/usr/bin $fs/usr |
pascal@15589 | 19 cp -a $install/usr/sbin $fs/usr |
pascal@15589 | 20 cp -a $install/usr/lib/grub/$libarch/*stage* \ |
gokhlayeh@11362 | 21 $fs/usr/lib/grub/$libarch |
pascal@6240 | 22 } |
pascal@10892 | 23 |