Skip to content
Permalink
94ea231a02
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 46 lines (35 sloc) 788 Bytes
#!/usr/bin/env beesh
# BEE_VERSION grub-2.04-1
# SRCURL[0]="/src/mariux/beeroot/downloads/grub-2.02_p167_61ec2e300.tar.bz2"
# https://ftp.gnu.org/gnu/grub/grub-2.04.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/5ce674ca6b2612d8939b9e6abed32934/grub-2.04.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
./autogen.sh
}
mee_configure() {
bee_configure \
--disable-libzfs \
--disable-efiemu \
--disable-nls
}
mee_build() {
bee_build
bee_install
make clean
bee_configure \
--with-platform=efi \
--target=x86_64 \
--disable-libzfs \
--disable-nls
bee_build
}
#mee_install() {
# bee_install
#}