| 1 | # Description: The GNU internationalization library |
| 2 | # URL: http://www.gnu.org/software/gettext/ |
| 3 | # Maintainer: CRUX System Team, core-ports at crux dot nu |
| 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
| 5 | # Depends on: ncurses |
| 6 | |
| 7 | name=gettext |
| 8 | version=0.18.1.1 |
| 9 | release=1 |
| 10 | source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) |
| 11 | |
| 12 | build() { |
| 13 | cd $name-$version |
| 14 | cat > config.cache << EOF |
| 15 | am_cv_func_iconv_works=yes |
| 16 | gl_cv_func_wcwidth_works=yes |
| 17 | gt_cv_func_printf_posix=yes |
| 18 | gt_cv_int_divbyzero_sigfpe=yes |
| 19 | EOF |
| 20 | ./configure --build=$CHOST \ |
| 21 | --host=$CTARGET \ |
| 22 | --prefix=/usr \ |
| 23 | --mandir=/usr/man \ |
| 24 | --disable-csharp \ |
| 25 | --disable-{,native-}java \ |
| 26 | --disable-nls \ |
| 27 | --without-emacs \ |
| 28 | --with-included-{glib,libcroco,libxml} \ |
| 29 | --cache-file=config.cache |
| 30 | make |
| 31 | make -j1 DESTDIR=$PKG install |
| 32 | rm -r $PKG/usr/share/{info,doc} |
| 33 | rm $PKG/usr/share/gettext/intl/{COPYING*,ChangeLog} |
| 34 | } |