From 77e94a85b8d174b67f8e400212d78c8c48a9f8a4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 1 Mar 2012 22:40:53 +0000 Subject: testing/py-polib: new aport A library to manipulate gettext files http://polib.readthedocs.org/en/latest/index.html --- testing/py-polib/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/py-polib/APKBUILD (limited to 'testing') diff --git a/testing/py-polib/APKBUILD b/testing/py-polib/APKBUILD new file mode 100644 index 000000000..b8ef72b12 --- /dev/null +++ b/testing/py-polib/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +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" -- cgit v1.2.3