summaryrefslogtreecommitdiff
path: root/repo/system/grub.xibuild
blob: 7bedae9753fb2a22bbb767ea65bee8d275a9493c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

MAKEDEPS="make "
DEPS="sh xz gettext device-mapper efibootmgr freetype2"

PKG_VER=2.06
SOURCE=https://ftp.gnu.org/gnu/grub/grub-$PKG_VER.tar.xz
ADDITIONAL="
    https://unifoundry.com/pub/unifont/unifont-13.0.06/font-builds/unifont-13.0.06.pcf.gz
    "


DESC="GNU GRand Unified Bootloader v2"

prepare () {
    gunzip -c unifont-13.0.06.pcf.gz > $PKG_DEST/usr/share/fonts/unifont/unifont.pcf

    unset {C,CPP,CXX,LD}FLAGS
}

build () {
    ./configure --prefix=/usr --sysconfdir=/etc --disable-werror \
        --disable-efiemu --enable-grub-mkfont --with-platform=efi
    make 
}

package () {
    make DESTDIR=$PKG_DEST install 
    mkdir -pv $PKG_DEST/usr/share/bash-completion/completions
    mv -v $PKG_DEST/etc/bash_completion.d/grub $PKG_DEST/usr/share/bash-completion/completions
}