diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-12-16 17:50:06 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-12-16 21:01:20 +1100 |
commit | f552dd67f3de1418343527a993bf137845a2a994 (patch) | |
tree | 6a8d3fbf7f5e6b14b0bace137e6e34a6bf34beec /icu/Pkgfile | |
parent | 29c1e4eb1a1fd6b74e9839116fe73b037a3e8fc6 (diff) | |
download | contrib-f552dd67f3de1418343527a993bf137845a2a994.tar.gz contrib-f552dd67f3de1418343527a993bf137845a2a994.tar.xz |
icu: new port
Diffstat (limited to 'icu/Pkgfile')
-rw-r--r-- | icu/Pkgfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/icu/Pkgfile b/icu/Pkgfile new file mode 100644 index 000000000..289635dcb --- /dev/null +++ b/icu/Pkgfile @@ -0,0 +1,29 @@ +# Description: Widely used set of C/C++ libraries providing Unicode and Globalization support. +# URL: http://www.icu-project.org/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Younes Hafri, ycrux at club-internet dot fr +# Depends on: + +name=icu +version=3.8.1 +release=1 +source=(http://download.icu-project.org/files/icu4c/$version/icu4c-${version//./_}-src.tgz) + +build() { + cd icu/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 + + rm $PKG/usr/share/icu/$version/license.html +} + |