core/gettext/PKGBUILD
2015-01-05 14:49:15 +01:00

38 lines
764 B
Bash

#
# Core Packages for Chakra, part of chakra-project.org
#
pkgname=gettext
pkgver=0.19.4
pkgrel=1
pkgdesc="GNU internationalization library"
arch=('x86_64')
url="http://www.gnu.org/software/gettext"
license=('GPL')
groups=('base')
depends=('acl' 'gcc-libs' 'glib2' 'libcroco' 'sh' 'pcre')
optdepends=('cvs: for autopoint tool')
options=(!docs)
install=gettext.install
source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
md5sums=('d3511af1e604a3478900d2c2b4a4a48e'
'SKIP')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --enable-csharp
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}