1234567891011121314151617 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- PKG_NAME:= musl
- ifeq ($(ADK_LIBC_VERSION),git)
- PKG_VERSION:= git
- PKG_RELEASE:= 1
- PKG_SITES:= git://git.musl-libc.org/musl
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
- endif
- ifeq ($(ADK_TARGET_LIB_MUSL_1_2_5),y)
- PKG_VERSION:= 1.2.5
- PKG_RELEASE:= 1
- PKG_HASH:= a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4
- PKG_SITES:= http://www.musl-libc.org/releases/
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
- endif
|