core/gettext/PKGBUILD

38 lines
764 B
Bash
Raw Normal View History

#
# Core Packages for Chakra, part of chakra-project.org
#
2010-05-16 23:08:55 +08:00
2010-03-13 23:25:19 +08:00
pkgname=gettext
2015-01-05 21:49:15 +08:00
pkgver=0.19.4
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="GNU internationalization library"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.gnu.org/software/gettext"
license=('GPL')
groups=('base')
2014-02-10 06:14:56 +08:00
depends=('acl' 'gcc-libs' 'glib2' 'libcroco' 'sh' 'pcre')
2010-03-13 23:25:19 +08:00
optdepends=('cvs: for autopoint tool')
2015-01-05 21:49:15 +08:00
options=(!docs)
2010-03-13 23:25:19 +08:00
install=gettext.install
source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
2015-01-05 21:49:15 +08:00
md5sums=('d3511af1e604a3478900d2c2b4a4a48e'
2014-02-10 06:14:56 +08:00
'SKIP')
2010-03-13 23:25:19 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2010-03-13 23:25:19 +08:00
./configure --prefix=/usr --enable-csharp
make
2010-05-16 23:08:55 +08:00
}
2014-02-10 06:14:56 +08:00
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
2010-05-16 23:08:55 +08:00
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-13 23:25:19 +08:00
}
2012-02-26 09:38:31 +08:00