wok annotate grub/receipt @ rev 24905
updated metasploit (5.0.91 -> 6.1.36)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Apr 09 13:21:57 2022 +0100 (2022-04-09) |
parents | 87f1b8852b4c |
children | 85fdef900d06 |
rev | line source |
---|---|
pankso@29 | 1 # SliTaz package receipt. |
pankso@29 | 2 |
pankso@29 | 3 PACKAGE="grub" |
pankso@29 | 4 VERSION="0.97" |
pankso@211 | 5 CATEGORY="base-system" |
pankso@29 | 6 SHORT_DESC="GRUB boot loader." |
pankso@29 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15078 | 8 LICENSE="GPL2" |
pankso@29 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@29 | 10 WEB_SITE="http://www.gnu.org/software/grub/" |
pascal@24415 | 11 WGET_URL="http://alpha.gnu.org/gnu/grub/$TARBALL" |
pascal@1633 | 12 CONFIG_FILES="/boot/grub" |
pankso@29 | 13 |
pascal@12235 | 14 BUILD_DEPENDS="gcc3" |
pascal@12235 | 15 |
pascal@24415 | 16 # What is the latest version available today? |
pascal@24415 | 17 current_version() |
pascal@24415 | 18 { |
pascal@24415 | 19 wget -O - ${WGET_URL%/*} 2>/dev/null | \ |
pascal@24626 | 20 sed "/$PACKAGE-0/!d;/tar/!d;s|.*$PACKAGE-||;s|.[a-z].*||" | sort -Vr | sed q |
pascal@24415 | 21 } |
pascal@24415 | 22 |
pankso@29 | 23 # Rules to configure and make the package. |
pankso@29 | 24 compile_rules() |
pankso@29 | 25 { |
slaxemulator@9700 | 26 for i in $stuff/*.diff ; do |
pascal@2599 | 27 [ -f $(basename $i) ] && continue |
pascal@2599 | 28 patch -p1 < $i |
pascal@2599 | 29 touch $(basename $i) |
pascal@2599 | 30 done |
pascal@12235 | 31 sed -i 's/\[ .grub-probe.*\]/mount | grep $grubdir | grep -q xfs/' \ |
pascal@12235 | 32 util/grub-install.in |
pascal@24416 | 33 grub_cv_prog_objcopy_absolute=yes \ |
pascal@12235 | 34 ./configure CC=gcc-3 --prefix=/usr --infodir=/usr/share/info \ |
pascal@5865 | 35 --without-curses --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1633 | 36 make && |
pascal@15078 | 37 make DESTDIR=$DESTDIR install |
pankso@29 | 38 } |
pankso@29 | 39 |
pankso@29 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@29 | 41 genpkg_rules() |
pankso@29 | 42 { |
pankso@29 | 43 mkdir -p $fs/boot/grub $fs/usr |
pascal@15078 | 44 cp -a $install/usr/bin $fs/usr |
pascal@15078 | 45 cp -a $install/usr/sbin $fs/usr |
pascal@15078 | 46 cp -a $install/usr/lib $fs/usr |
pankso@29 | 47 |
pankso@29 | 48 # Permissions |
pankso@29 | 49 chmod 755 $fs/usr/sbin/grub-* |
pascal@15078 | 50 chmod 655 $fs/usr/lib/grub/*/* |
pankso@29 | 51 |
pankso@29 | 52 # Strip. |
pankso@29 | 53 # Example config file (menu.lst). |
pascal@18763 | 54 cp $stuff/example-menu.lst $fs/boot/grub |
pankso@29 | 55 } |