diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 20:28:44 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 20:28:44 +0100 |
commit | e46feeadc9a85678b6b9a73b5ef37c9fed16ad98 (patch) | |
tree | 3adc1b0a45192e59c071fd19bb97de2e7368acce /base/icu/Pkgfile | |
parent | 6e28e90d91c850735a34d12652d57fd05d88a093 (diff) | |
download | nutyx-pakxe-e46feeadc9a85678b6b9a73b5ef37c9fed16ad98.tar.gz nutyx-pakxe-e46feeadc9a85678b6b9a73b5ef37c9fed16ad98.tar.bz2 nutyx-pakxe-e46feeadc9a85678b6b9a73b5ef37c9fed16ad98.tar.xz nutyx-pakxe-e46feeadc9a85678b6b9a73b5ef37c9fed16ad98.zip |
icu dans base
Diffstat (limited to 'base/icu/Pkgfile')
-rw-r--r-- | base/icu/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/base/icu/Pkgfile b/base/icu/Pkgfile new file mode 100644 index 000000000..6abb7604e --- /dev/null +++ b/base/icu/Pkgfile @@ -0,0 +1,26 @@ +# Description: International Components for Unicode for C +# URL: http://www.icu-project.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=icu +version=4.6 +release=1 +source=(http://download.$name-project.org/files/icu4c/$version/icu4c-${version//./_}-src.tgz) + + +build () { + cd $name/source + chmod +x runConfigureICU configure install-sh + + ./runConfigureICU LinuxRedHat --prefix=/usr \ + --enable-shared \ + --disable-samples \ + --disable-tests \ + --enable-rpath + make + make prefix=$PKG/usr install + + chown -R root:root $PKG +} + |