diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-03-01 22:40:53 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-17 13:36:28 +0000 |
commit | 77e94a85b8d174b67f8e400212d78c8c48a9f8a4 (patch) | |
tree | f17ffe700121bd872d209dcde32b1616a6fdd7dc /testing/py-polib | |
parent | 8683398a0d7670abaaab5da10e91ba9ddf979a06 (diff) | |
download | aports-77e94a85b8d174b67f8e400212d78c8c48a9f8a4.tar.bz2 aports-77e94a85b8d174b67f8e400212d78c8c48a9f8a4.tar.xz |
testing/py-polib: new aport
A library to manipulate gettext files
http://polib.readthedocs.org/en/latest/index.html
Diffstat (limited to 'testing/py-polib')
-rw-r--r-- | testing/py-polib/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/py-polib/APKBUILD b/testing/py-polib/APKBUILD new file mode 100644 index 0000000000..b8ef72b123 --- /dev/null +++ b/testing/py-polib/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-polib +_pkgname=polib +pkgver=0.7.0 +pkgrel=0 +pkgdesc="A library to manipulate gettext files" +url="http://polib.readthedocs.org/en/latest/index.html" +arch="noarch" +license="MIT" +depends="python" +depends_dev="" +makedepends="python-dev wget" +install="" +subpackages="" +source="https://bitbucket.org/izi/polib/downloads/$_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="958f8f81ade7d2484edc25b3989fe247 polib-0.7.0.tar.gz" |