Makefile.inc 550 B

12345678910111213141516
  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. PKG_NAME:= uClibc
  4. ifeq ($(ADK_LIBC_VERSION),git)
  5. PKG_VERSION:= 0.9.34-git
  6. PKG_RELEASE:= 1
  7. PKG_SITES:= git://git.uclibc.org/uClibc.git
  8. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
  9. else
  10. PKG_VERSION:= $(ADK_LIBC_VERSION)
  11. PKG_RELEASE:= 1
  12. PKG_HASH:= 62333167b79afb0b25a843513288c67b59547acf653e8fbe62ee64e71ebd1587
  13. PKG_SITES:= http://uclibc.org/downloads/
  14. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
  15. endif