wok-6.x annotate grub/receipt @ rev 16906
pangox-compat: tiny edits; add pangox-compat-dev; gtkglext(-dev): update (b)deps.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Jul 16 01:54:55 2014 +0300 (2014-07-16) |
parents | a7288c2607d3 |
children | c2b2f2268068 |
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/" |
pankso@29 | 11 WGET_URL="ftp://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 |
pankso@29 | 16 # Rules to configure and make the package. |
pankso@29 | 17 compile_rules() |
pankso@29 | 18 { |
pankso@29 | 19 cd $src |
slaxemulator@9700 | 20 for i in $stuff/*.diff ; do |
pascal@2599 | 21 [ -f $(basename $i) ] && continue |
pascal@2599 | 22 patch -p1 < $i |
pascal@2599 | 23 touch $(basename $i) |
pascal@2599 | 24 done |
pascal@12235 | 25 sed -i 's/\[ .grub-probe.*\]/mount | grep $grubdir | grep -q xfs/' \ |
pascal@12235 | 26 util/grub-install.in |
pascal@12235 | 27 ./configure CC=gcc-3 --prefix=/usr --infodir=/usr/share/info \ |
pascal@5865 | 28 --without-curses --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1633 | 29 make && |
pascal@15078 | 30 make DESTDIR=$DESTDIR install |
pankso@29 | 31 } |
pankso@29 | 32 |
pankso@29 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@29 | 34 genpkg_rules() |
pankso@29 | 35 { |
pankso@29 | 36 mkdir -p $fs/boot/grub $fs/usr |
pascal@15078 | 37 cp -a $install/usr/bin $fs/usr |
pascal@15078 | 38 cp -a $install/usr/sbin $fs/usr |
pascal@15078 | 39 cp -a $install/usr/lib $fs/usr |
pankso@29 | 40 |
pankso@29 | 41 # Permissions |
pankso@29 | 42 chmod 755 $fs/usr/sbin/grub-* |
pascal@15078 | 43 chmod 655 $fs/usr/lib/grub/*/* |
pankso@29 | 44 |
pankso@29 | 45 # Strip. |
pankso@29 | 46 # Example config file (menu.lst). |
pankso@29 | 47 cp stuff/example-menu.lst $fs/boot/grub |
pankso@29 | 48 } |
pankso@29 | 49 |