wok view grub2/receipt @ rev 19321

apache: update PIDFILE
author Richard Dunbar <mojo@slitaz.org>
date Wed Jul 13 20:20:01 2016 -0400 (2016-07-13)
parents 99ae478b6540
children 8154fa30d15b
line source
1 # SliTaz package receipt.
3 PACKAGE="grub2"
4 SOURCE="grub"
5 VERSION="2.00"
6 CATEGORY="base-system"
7 SHORT_DESC="GRUB2 boot loader."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="http://www.gnu.org/software/grub/"
12 WGET_URL="ftp://ftp.gnu.org/gnu/grub/$TARBALL"
14 DEPENDS="zlib freetype ncurses libusb-compat grep libusb libdevmapper"
15 BUILD_DEPENDS="flex bison zlib-dev xz-dev freetype-dev ncurses-dev \
16 libusb-compat-dev libusb-dev libdevmapper-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # CVE-2015-8370
22 sed -i "s/'.b'/& \\&\\& cur_len/" grub-core/lib/crypto.c grub-core/normal/auth.c
24 # Fixes for flex 2.5.37
25 export CFLAGS="-Wno-error=sign-compare"
26 sed -i 's/YY_FATAL_ERROR/REMOVED_&/' grub-core/script/yylex.l
28 #chmod +x install-sh
29 ./configure --prefix=/usr --sysconfdir=/etc \
30 --mandir=/usr/share/man $CONFIGURE_ARGS &&
31 make $MAKEFLAGS &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/boot/grub $fs/usr
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/sbin $fs/usr
41 cp -a $install/usr/share $fs/usr
42 cp -a $install/usr/lib $fs/usr
43 cp -a $install/etc $fs
45 # Example config file (grub.cfg).
46 cp stuff/example-grub.cfg $fs/boot/grub
47 }
49 post_install()
50 {
51 cat <<EOT
52 # To install grub to your sda MBR
53 grub-install /dev/sda
55 # To generate a configuration file
56 grub-mkconfig -o /boot/grub/grub.cfg
58 # You can learn from /boot/grub/example-grub.cfg too.
59 EOT
60 }