mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
38 lines
775 B
Bash
38 lines
775 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=gettext
|
|
pkgver=0.18.3.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' 'pcre')
|
|
optdepends=('cvs: for autopoint tool')
|
|
options=(!libtool !docs)
|
|
install=gettext.install
|
|
source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
md5sums=('3fa4236c41b7e837355de144210207ec'
|
|
'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
|
|
}
|
|
|