mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
testing/py-translationstring: new aport
A Python utility library for i18n http://docs.pylonsproject.org/projects/translationstring/dev/
This commit is contained in:
parent
d2a31ac16f
commit
23ff155fff
1 changed files with 41 additions and 0 deletions
41
testing/py-translationstring/APKBUILD
Normal file
41
testing/py-translationstring/APKBUILD
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-translationstring
|
||||
_pkgname=translationstring
|
||||
pkgver=1.1
|
||||
pkgrel=0
|
||||
pkgdesc="A Python utility library for i18n"
|
||||
url="http://docs.pylonsproject.org/projects/translationstring/dev/"
|
||||
arch="noarch"
|
||||
license="BSD"
|
||||
depends="python"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
}
|
||||
|
||||
md5sums="0979b46d8f0f852810c8ec4be5c26cf2 translationstring-1.1.tar.gz"
|
||||
sha256sums="8147c47e8091bc7b8168758a01c049581959faba9d56cafde8734de44e98711c translationstring-1.1.tar.gz"
|
||||
sha512sums="76c8ef9bd745e6b52b6f383d277d94706dab5d6419543048d2138fb779cdfb19a7ce6452e99bbaad983c961233155690849dfda57db10a87d11240990e9adfd8 translationstring-1.1.tar.gz"
|
Loading…
Add table
Add a link
Reference in a new issue