blob: 05647793ea2eb4c5be541800665d889b16f2d774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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_RELEASE:= 1
PKG_SITES:= git://git.uclibc.org/uClibc.git
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
else
PKG_VERSION:= $(ADK_LIBC_VERSION)
PKG_RELEASE:= 1
PKG_HASH:= 62333167b79afb0b25a843513288c67b59547acf653e8fbe62ee64e71ebd1587
PKG_SITES:= http://uclibc.org/downloads/
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
endif
|