| 1234567891011121314151617181920212223242526272829303132333435363738 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(TOPDIR)/rules.mkPKG_NAME:=		grubPKG_VERSION:=		1.97.1PKG_RELEASE:=		1PKG_MD5SUM:=		66fe18cd9318e3d67a34d7b7a8e7b1f6PKG_DESCR:=		GRand Unified BootloaderPKG_SECTION:=		basePKG_URL:=		http://www.gnu.org/software/grubPKG_SITES:=		ftp://alpha.gnu.org/gnu/grub/PKG_HOST_DEPENDS:=	linuxPKG_TARGET_DEPENDS:=    x86 x86_64include $(TOPDIR)/mk/package.mk$(eval $(call PKG_template,GRUB,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	gnuCONFIGURE_ARGS+=	--disable-grub-emu \			--disable-efiemu \			--disable-grub-mkfont \			--disable-grub-fstestBUILD_STYLE:=		autoINSTALL_STYLE:=		autopost-install:	${INSTALL_DIR} $(IDIR_GRUB)/usr/{sbin,lib,bin} 	${INSTALL_DIR} $(IDIR_GRUB)/etc	${CP} ${WRKINST}/etc/grub.d $(IDIR_GRUB)/etc	${CP} ${WRKINST}/usr/lib/* $(IDIR_GRUB)/usr/lib	${INSTALL_BIN} ${WRKINST}/usr/bin/* $(IDIR_GRUB)/usr/bin	${INSTALL_BIN} ${WRKINST}/usr/sbin/* $(IDIR_GRUB)/usr/sbininclude ${TOPDIR}/mk/pkg-bottom.mk
 |