Makefile 869 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. # compiled with i486 toolchain, statically linked with uClibc
  5. # cross-compile on amd64 does not work, so provide a binary package
  6. PKG_NAME:= grub-bin
  7. PKG_VERSION:= 1.97.1
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 24961a39e63d8ec16d765aad3a301cda
  10. PKG_DESCR:= GRUB bootloader
  11. PKG_SECTION:= sys
  12. PKG_SITES:= http://openadk.org/distfiles/
  13. PKG_TARGET_DEPENDS:= x86 x86_64
  14. CFLINE_GRUB_BIN:= select BUSYBOX_FEATURE_STAT_FORMAT
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,GRUB_BIN,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. PKGDFLT_GRUB_BIN= y
  18. INSTALL_STYLE:= manual
  19. do-install:
  20. ${CP} ${WRKBUILD}/* ${IDIR_GRUB_BIN}/
  21. include ${TOPDIR}/mk/pkg-bottom.mk