core/translate-toolkit/PKGBUILD
2013-06-20 09:03:43 +00:00

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}"
}