mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 21:07:13 +08:00
35 lines
775 B
Bash
35 lines
775 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
|
|
pkgname=gettext
|
|
pkgver=0.18.2
|
|
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')
|
|
optdepends=('cvs: for autopoint tool')
|
|
options=(!libtool)
|
|
install=gettext.install
|
|
source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
md5sums=('0c86e5af70c195ab8bd651d17d783928'
|
|
'1a658e29a03ab42da6d2d468b0583407')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --enable-csharp
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|