blob: b616ec2e2a7c58339fbc3ef73cb32781cd2d620e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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-ng
ifeq ($(ADK_LIBC_VERSION),git)
PKG_VERSION:= 1.0.0
PKG_SITES:= git://uclibc-ng.org/git/uclibc-ng
else
PKG_VERSION:= $(ADK_LIBC_VERSION)
PKG_SITES:= http://downloads.uclibc-ng.org/
endif
PKG_RELEASE:= 1
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
|