#!/bin/bash DEPS=(sh xz gettext device-mapper) PKG_VER=2.06 SOURCE=https://ftp.gnu.org/gnu/grub/grub-$PKG_VER.tar.xz DESC="GNU GRand Unified Bootloader v2" build () { ./configure --prefix=/usr --sysconfdir=/etc --disable-werror 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 }