PKGBUILDs/core/gettext/PKGBUILD

28 lines
674 B
Bash
Raw Normal View History

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