2010-02-18 03:53:10 +00:00
|
|
|
# Template file for 'grub'
|
|
|
|
pkgname=grub
|
2011-05-15 09:23:11 +00:00
|
|
|
version=1.99
|
2011-11-14 17:12:47 +00:00
|
|
|
revision=8
|
2011-05-15 09:23:11 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/grub/grub-$version.tar.xz"
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2009-10-04 06:04:12 +00:00
|
|
|
short_desc="GRand Unified Bootloader 2"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-05-15 09:23:11 +00:00
|
|
|
checksum=f308148d4c83c6f16a73b58a0cd39381656edb740929028cae7ad5f0d651021b
|
2009-10-04 06:04:12 +00:00
|
|
|
long_desc="
|
|
|
|
This is GRUB 2, the second version of the GRand Unified Bootloader.
|
|
|
|
GRUB 2 is rewritten from scratch to make GNU GRUB cleaner, safer, more
|
|
|
|
robust, more powerful, and more portable."
|
|
|
|
|
|
|
|
conf_files="/etc/default/grub /etc/grub.d/40_custom"
|
|
|
|
|
2011-05-15 09:23:11 +00:00
|
|
|
Add_dependency build xz
|
2011-06-24 21:02:58 +00:00
|
|
|
Add_dependency build flex
|
2010-02-18 03:53:10 +00:00
|
|
|
Add_dependency build zlib-devel
|
|
|
|
Add_dependency build libusb-compat-devel
|
|
|
|
Add_dependency build ncurses-devel
|
|
|
|
Add_dependency build freetype-devel
|
2011-01-29 01:27:35 +00:00
|
|
|
Add_dependency build liblzma-devel
|
|
|
|
Add_dependency build device-mapper-devel
|
2011-10-18 15:55:28 +00:00
|
|
|
Add_dependency build font-unifont-bdf
|
2010-02-18 06:12:34 +00:00
|
|
|
Add_dependency full os-prober
|
2009-10-04 06:04:12 +00:00
|
|
|
|
2011-10-18 15:55:28 +00:00
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
# fix unifont.bdf location so grub-mkfont can create *.pf2 files
|
|
|
|
sed -i 's|/usr/share/fonts/unifont|/usr/share/fonts/misc|' configure
|
|
|
|
}
|
|
|
|
|
2009-10-04 06:04:12 +00:00
|
|
|
post_install()
|
|
|
|
{
|
2011-07-09 22:03:36 +00:00
|
|
|
# Required to compress info files.
|
|
|
|
vmkdir usr/share/info
|
|
|
|
touch -f ${DESTDIR}/usr/share/info/dir
|
|
|
|
|
|
|
|
vinstall ${FILESDIR}/grub.default 644 etc/default grub
|
|
|
|
# Kernel hooks.
|
|
|
|
vinstall ${FILESDIR}/kernel.d/grub.post 750 \
|
|
|
|
etc/kernel.d/post-install 50-grub
|
|
|
|
vinstall ${FILESDIR}/kernel.d/grub.post 750 \
|
|
|
|
etc/kernel.d/post-remove 50-grub
|
2009-10-04 06:04:12 +00:00
|
|
|
}
|