blob: c58903290df00998691bd4a6bc6e59117a7a1041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
PKG_NAME:= uClibc
ifeq ($(ADK_LIBC_VERSION),git)
PKG_VERSION:= 0.9.34-git
PKG_REPO:= git://git.uclibc.org/uClibc.git
else
PKG_VERSION:= $(ADK_LIBC_VERSION)
PKG_SITES:= http://downloads.uclibc-ng.org/
endif
PKG_RELEASE:= 1
PKG_MD5SUM:= 73e6fe215648d02246f4d195b25fb17e
PKG_SITES:= http://uclibc.org/downloads/
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
|