wok view grub2-efi/receipt @ rev 20646

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:40:37 2019 +0100 (2019-01-11)
parents 1569af23c651
children 81f116b5627e
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 lsefisystab lssal lsefimmap lsacpi ls \
29 ntfs hfs appleldr boot cat efi_gop efi_uga elf fat hfsplus \
30 iso9660 linux keylayouts memdisk minicmd part_apple ext2 extcmd \
31 xfs xnu part_bsd part_gpt search search_fs_file chain btrfs \
32 loadbios loadenv lvm minix minix2 reiserfs memrw mmap msdospart \
33 scsi loopback normal configfile gzio all_video \
34 gfxterm gettext echo
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/boot/efi/boot
41 cp $src/bootia32.efi $fs/boot/efi/boot
42 }