# Description: portable boot loader and the reference implementation for the Limine boot protocol # URL: https://limine-bootloader.org/ # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: mtools nasm name=limine version=10.2.0 release=1 source=(https://codeberg.org/Limine/Limine/releases/download/v${version}/${name}-${version}.tar.bz2) build() { cd ${name}-${version} ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib \ --libexecdir=/usr/lib/$name \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --enable-bios \ --enable-bios-cd \ --enable-uefi-x86-64 \ --enable-uefi-cd make make DESTDIR=$PKG install }