From 3027957b3cdf811100d54a34a15a10cb5a4aaa41 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Sat, 18 May 2013 20:57:56 +1000 Subject: add package icu4c --- index.html | 5 +++++ src/icu4c.mk | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/icu4c.mk diff --git a/index.html b/index.html index 5b6425b..ad359e8 100644 --- a/index.html +++ b/index.html @@ -1353,6 +1353,11 @@ aptitude -t squeeze-backports install cmake yasm Hunspell + icu4c + 51.1 + ICU4C + + id3lib 3.8.3 id3lib diff --git a/src/icu4c.mk b/src/icu4c.mk new file mode 100644 index 0000000..2a19e69 --- /dev/null +++ b/src/icu4c.mk @@ -0,0 +1,32 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := icu4c +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 7905632335e3dcd6667224da0fa087b49f9095e9 +$(PKG)_SUBDIR := icu +$(PKG)_FILE := $(PKG)-$(subst .,_,$($(PKG)_VERSION))-src.tgz +$(PKG)_URL := http://download.icu-project.org/files/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + echo 'TODO: Updates for package icu4c need to be written.' >&2; + echo $(icu4c_VERSION) +endef + +define $(PKG)_BUILD + mkdir '$(1).native' && cd '$(1).native' && '$(1)/source/configure' + $(MAKE) -C '$(1).native' -j '$(JOBS)' + + mkdir '$(1).cross' && cd '$(1).cross' && '$(1)/source/configure' \ + --host='$(TARGET)' \ + --build="`config.guess`" \ + --prefix='$(PREFIX)/$(TARGET)' \ + --enable-static \ + --disable-shared \ + --with-cross-build='$(1).native' \ + CFLAGS=-DU_USING_ICU_NAMESPACE=0 \ + SHELL=bash + + $(MAKE) -C '$(1).cross' -j '$(JOBS)' install LIBPREFIX=lib +endef -- cgit v0.12