wok view grub2-efi/receipt @ rev 20069

busybox/udhcpc6: update script (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 23 17:21:58 2017 +0200 (2017-09-23)
parents 6a6ea56d432e
children 1569af23c651
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 export EFI_ARCH=i386
22 ./configure --prefix=/usr --sysconfdir=/etc \
23 --with-platform=efi --target=${EFI_ARCH} --program-prefix="" \
24 --mandir=/usr/share/man $CONFIGURE_ARGS &&
25 make $MAKEFLAGS
26 cd grub-core
27 ../grub-mkimage -d . -o ../bootia32.efi -O i386-efi -p /boot/grub \
28 ntfs hfs appleldr boot cat efi_gop efi_uga elf fat hfsplus \
29 iso9660 linux keylayouts memdisk minicmd part_apple ext2 extcmd \
30 xfs xnu part_bsd part_gpt search search_fs_file chain btrfs \
31 loadbios loadenv lvm minix minix2 reiserfs memrw mmap msdospart \
32 scsi loopback normal configfile gzio all_video efi_gop efi_uga \
33 gfxterm gettext echo boot chain
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/boot/efi/boot $fs/boot/grub/i386-efi
40 cp $src/bootia32.efi $fs/boot/efi/boot
41 cp $src/grub-core/*.mod $fs/boot/grub/i386-efi
42 }