2009-10-08 03:40:19 +00:00
|
|
|
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
|
|
|
|
|
|
pkgname=gettext
|
|
|
|
pkgver=0.17
|
|
|
|
pkgrel=4
|
|
|
|
pkgdesc="GNU internationalization library"
|
2009-10-10 03:25:07 +00:00
|
|
|
arch=('arm')
|
2009-10-08 03:40:19 +00:00
|
|
|
url="http://www.gnu.org/software/gettext"
|
|
|
|
license=('GPL')
|
|
|
|
groups=('base')
|
|
|
|
depends=(gcc-libs ncurses 'expat>=1.95' acl)
|
|
|
|
options=(!libtool)
|
|
|
|
source=(ftp://ftp.gnu.org/pub/gnu/gettext/gettext-${pkgver}.tar.gz)
|
|
|
|
md5sums=('58a2bc6d39c0ba57823034d55d65d606')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/gettext-$pkgver
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-included-libcroco \
|
|
|
|
--with-included-libxml \
|
|
|
|
--disable-jave \
|
|
|
|
--without-emacs || return 1
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=$pkgdir install || return 1
|
|
|
|
}
|