diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-05-08 04:39:21 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-05-09 00:25:58 +0200 |
commit | 1db490aae99295c7b74d630b1b2edbf0b5a5516c (patch) | |
tree | 8bc59a8a8d3f322339db3cd61fa9089928998807 | |
parent | 18bd541dd02b153427fb4f010a6426c8e91bef1b (diff) |
localedef: new package
This host only package allows to build the localedef program, which is
needed to generate locale data for (e)glibc-based systems. The source
code has been extracted from the eglibc sources and put inside a small
and nice tarball by the PTXdist developers, which makes it easy and
convenient to build for the host.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/localedef/localedef.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/localedef/localedef.mk b/package/localedef/localedef.mk new file mode 100644 index 000000000..1a044e3c0 --- /dev/null +++ b/package/localedef/localedef.mk @@ -0,0 +1,20 @@ +############################################################# +# +# localedef +# +############################################################# + +LOCALEDEF_VERSION = 2.14.1-r17443-ptx1 +LOCALEDEF_SOURCE = localedef-eglibc-$(LOCALEDEF_VERSION).tar.bz2 +LOCALEDEF_SITE = http://www.pengutronix.de/software/ptxdist/temporary-src/ + +HOST_LOCALEDEF_CONF_OPT += \ + --prefix=/usr \ + --with-glibc=./eglibc + +# The makefile does not implement an install target +define HOST_LOCALEDEF_INSTALL_CMDS + $(INSTALL) -D -m 0755 $(@D)/localedef $(HOST_DIR)/usr/bin/localedef +endef + +$(eval $(call AUTOTARGETS,host)) |