12345678910111213141516171819202122232425 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- PKG_NAME:= glibc
- ifeq ($(ADK_LIBC_VERSION),git)
- PKG_VERSION:= 2.28.90
- PKG_GLIBCVER:= 2.28.9000
- PKG_SITES:= git://sourceware.org/git/glibc.git
- PKG_RELEASE:= 1
- endif
- ifeq ($(ADK_TARGET_LIB_GLIBC_2_28),y)
- PKG_VERSION:= 2.28
- PKG_GLIBCVER:= 2.28
- PKG_RELEASE:= 1
- PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
- PKG_HASH:= b1900051afad76f7a4f73e71413df4826dce085ef8ddb785a945b66d7d513082
- endif
- ifeq ($(ADK_TARGET_LIB_GLIBC_CSKY),y)
- PKG_VERSION:= master
- PKG_GLIBCVER:= 2.25
- PKG_GIT:= branch
- PKG_SITES:= https://github.com/c-sky/glibc.git
- PKG_RELEASE:= 1
- endif
- DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
|