mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 14:54:37 +08:00
20 lines
710 B
Bash
20 lines
710 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/any/translate-toolkit/
|
|
|
|
pkgname=translate-toolkit
|
|
pkgver=1.10.0
|
|
pkgrel=2
|
|
pkgdesc="A toolkit to convert between various different translation formats, help process and validate localisations"
|
|
arch=('x86_64')
|
|
url="http://translate.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('bash' 'python2-lxml')
|
|
optdepends=('python2-iniparse: to use ini2po script')
|
|
source=(http://downloads.sourceforge.net/translate/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('91ef9ec6e997f8cd5379fb1e44ce2063')
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
python setup.py install --root="${pkgdir}" --optimize=1
|
|
}
|