mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
31 lines
695 B
Bash
31 lines
695 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=intltool
|
|
pkgver=0.50.2
|
|
pkgrel=1
|
|
pkgdesc="The internationalization tool collection"
|
|
arch=('any')
|
|
url="https://edge.launchpad.net/intltool"
|
|
license=('GPL')
|
|
depends=('perl-xml-parser')
|
|
source=(http://edge.launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
install -Dm644 doc/I18N-HOWTO \
|
|
${pkgdir}/usr/share/doc/${pkgname}/I18N-HOWTO
|
|
}
|