Makefile.inc 544 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:= musl
  4. ifeq ($(ADK_LIBC_VERSION),git)
  5. PKG_VERSION:= git
  6. PKG_RELEASE:= 1
  7. PKG_SITES:= git://git.musl-libc.org/musl
  8. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
  9. else
  10. PKG_VERSION:= $(ADK_LIBC_VERSION)
  11. PKG_RELEASE:= 1
  12. PKG_HASH:= bb9e6da51b7b12641f5d1abb39705c6c6c1b2fbd20002362948aa736a0aa353f
  13. PKG_SITES:= http://www.musl-libc.org/releases/
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. endif