mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 17:34:36 +08:00
23 lines
667 B
Bash
23 lines
667 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=1
|
|
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' 'python-lxml')
|
|
source=(http://downloads.sourceforge.net/translate/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('91ef9ec6e997f8cd5379fb1e44ce2063')
|
|
|
|
build() {
|
|
/bin/true
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
python setup.py install --root="${pkgdir}"
|
|
}
|