Makefile 761 B

12345678910111213141516171819202122232425
  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:= 99ddead9dcb689a7ec2431c1e6b3cf0d
  10. PKG_DESCR:= GRUB bootloader
  11. PKG_SECTION:= sys
  12. PKG_SITES:= http://openadk.org/distfiles/
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,GRUB_BIN,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. INSTALL_STYLE= manual
  16. do-install:
  17. ${CP} ${WRKBUILD}/* ${IDIR_GRUB_BIN}/
  18. include ${TOPDIR}/mk/pkg-bottom.mk