wok view grub2-efi/receipt @ rev 19935

Up grub2 (2.02)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 30 10:12:31 2017 +0200 (2017-04-30)
parents 96c03c2f8bdd
children 6a6ea56d432e
line source
1 # SliTaz package receipt.
3 PACKAGE="grub2-efi"
4 SOURCE="grub"
5 VERSION="2.02"
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 # Fixes for flex 2.5.37
22 export CFLAGS="-Wno-error=sign-compare"
23 sed -i 's/YY_FATAL_ERROR/REMOVED_&/' grub-core/script/yylex.l
25 export EFI_ARCH=i386
26 ./configure --prefix=/usr --sysconfdir=/etc \
27 --with-platform=efi --target=${EFI_ARCH} --program-prefix="" \
28 --mandir=/usr/share/man $CONFIGURE_ARGS &&
29 make $MAKEFLAGS
30 cd grub-core
31 ../grub-mkimage -d . -o ../bootia32.efi -O i386-efi -p /boot/grub \
32 ntfs hfs appleldr boot cat efi_gop efi_uga elf fat hfsplus \
33 iso9660 linux keylayouts memdisk minicmd part_apple ext2 extcmd \
34 xfs xnu part_bsd part_gpt search search_fs_file chain btrfs \
35 loadbios loadenv lvm minix minix2 reiserfs memrw mmap msdospart \
36 scsi loopback normal configfile gzio all_video efi_gop efi_uga \
37 gfxterm gettext echo boot chain
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/boot/efi/boot
44 cp $src/bootia32.efi $fs/boot/efi/boot
45 }